aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/utility-uninstalled.cxx
blob: f836de6cf934045b57a2054b9bf37cf557825640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : libbuild2/utility-uninstalled.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <libbuild2/utility.hxx>

namespace build2
{
  const bool build_installed = false;
  const dir_path build_install_lib; // Empty.

#ifdef BUILD2_INSTALL_BUILDFILE
  const dir_path build_install_buildfile (BUILD2_INSTALL_BUILDFILE);
#else
  const dir_path build_install_buildfile; // Empty.
#endif

#ifdef BUILD2_INSTALL_DATA
  const dir_path build_install_data (BUILD2_INSTALL_DATA);
#else
  const dir_path build_install_data; // Empty (during bootstrap).
#endif
}