blob: 9e3e0c2d1e81dc380ee89385318a85516b3ad131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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$)###";
}
}
|