blob: e23add1399bebecacb0240836575703153f23954 (
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
|
// file : libbuild2/utility-installed.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
// Bootstrap build is never considered installed.
//
#ifndef BUILD2_BOOTSTRAP
#include <libbuild2/utility.hxx>
namespace build2
{
const bool build_installed = true;
#ifdef BUILD2_INSTALL_LIB
const dir_path build_install_lib (BUILD2_INSTALL_LIB);
#endif
#ifdef BUILD2_INSTALL_BUILDFILE
const dir_path build_install_buildfile (BUILD2_INSTALL_BUILDFILE);
#endif
#ifdef BUILD2_INSTALL_DATA
const dir_path build_install_data (BUILD2_INSTALL_DATA);
#endif
}
#endif
|