blob: 9135c21a6b8bed02d46257e9c707e8f7d5f1d6a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : libbuild2/utility-installed.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
// Bootstrap build is never condidered installed.
//
#ifndef BUILD2_BOOTSTRAP
#include <libbuild2/utility.hxx>
namespace build2
{
const bool build_installed = true;
}
#endif
|