summaryrefslogtreecommitdiff
path: root/src/settings.h
blob: d71717a073e29772db9c787baf699f944b34943b (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;
	std::size_t parallel_processes;
	int verbose{1};
};