blob: 0845d305637048559845722c72a5e34f00e7d392 (
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
27
28
29
30
31
32
33
34
35
36
|
// -*- 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;
BuildConfigurations (*cb)();
};
struct ExternalConfigurationEntry
{
const char* file;
ExternalConfigurations (*cb)();
};
extern std::array<BuildConfigurationEntry, 1024> configFiles;
extern std::size_t numConfigFiles;
extern std::array<ExternalConfigurationEntry, 1024> externalConfigFiles;
extern std::size_t numExternalConfigFiles;
int reg(const char* location);
int unreg(const char* location);
//! Returns true of recompilation was needed.
bool recompileCheck(const Settings& settings, int argc, char* argv[],
bool relaunch_allowed = true);
|