summaryrefslogtreecommitdiff
path: root/src/settings.h
blob: 48e3619a71b6d4300be3c87565d95921ab1f5656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <cstddef>

struct Settings
{
	std::string builddir{"build"};
	std::size_t parallel_processes{1};
	int verbose{0}; // -1: completely silent, 0: normal, 1: verbose, ...
};