summaryrefslogtreecommitdiff
path: root/src/rebuild.h
blob: 906d0894f526be02173b78c26994e709cf38a7af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <vector>
#include <array>

#include "libctor.h"

class Settings;

struct BuildConfigurationEntry
{
	const char* file;
	std::vector<BuildConfiguration> (*cb)();
};

extern std::array<BuildConfigurationEntry, 1024> configFiles;
extern std::size_t numConfigFiles;

//int reg(const char* location, std::vector<BuildConfiguration> (*cb)());
int unreg(const char* location);

void recompileCheck(const Settings& settings, int argc, char* argv[],
                    bool force = false, bool relaunch_allowed = true);