blob: 4c86b149a0522cfdde98448da5898b7d44bb13d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// file : build/context -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_CONTEXT
#define BUILD_CONTEXT
#include <build/path>
namespace build
{
extern path work;
extern path home;
extern path src_root;
extern path out_root;
extern path src_base;
extern path out_base;
}
#endif // BUILD_CONTEXT
|