blob: 6b1ce7715f270a90723db9417e6d1954ebddb996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : libbuild2/config/host-config.cxx.in -*- C++ -*-
// license : MIT; see accompanying LICENSE file
namespace build2
{
namespace config
{
// This is a raw string literal, in case you are unfamiliar.
//
extern const char host_config[] = R"###($host_config$)###";
extern const char build2_config[] = R"###($build2_config$)###";
extern const char host_config_no_warnings[] = R"###($host_config_no_warnings$)###";
extern const char build2_config_no_warnings[] = R"###($build2_config_no_warnings$)###";
}
}
|