summaryrefslogtreecommitdiff
path: root/src/settings.h
blob: 6b8729fc105f627b50da45d856fcc3988b74200b (plain)
1
2
3
4
5
6
7
8
9
10
11
// -*- c++ -*-
#pragma once

#include <cstddef>

struct Settings
{
	std::string builddir;
	std::size_t parallel_processes;
	int verbose{1};
};