summaryrefslogtreecommitdiff
path: root/src/rebuild.h
blob: 3679696b6e10f43748ade4d8bee9b0cd815ec721 (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"
#include "settings.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);