From 7e3f16c393a614e0a951abe3f7237c8169d689a9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 5 Jan 2015 15:00:39 +0200 Subject: Determine work, home, and {src,out}_{root,base} directories --- build/context.cxx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 build/context.cxx (limited to 'build/context.cxx') diff --git a/build/context.cxx b/build/context.cxx new file mode 100644 index 0000000..ce80324 --- /dev/null +++ b/build/context.cxx @@ -0,0 +1,19 @@ +// file : build/context.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include + +using namespace std; + +namespace build +{ + path work; + path home; + + path src_root; + path out_root; + + path src_base; + path out_base; +} -- cgit v1.1