blob: e02f85a5e24f4b853e969df3ab7a673f0416cdc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// file : libbuild2/cc/utility.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <libbuild2/cc/utility.hxx>
namespace build2
{
namespace cc
{
using namespace bin;
const dir_path module_dir ("cc");
const dir_path module_build_dir (dir_path (module_dir) /= "build");
const dir_path module_build_modules_dir (
dir_path (module_build_dir) /= "modules");
}
}
|