diff options
Diffstat (limited to 'build/native.cxx')
-rw-r--r-- | build/native.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build/native.cxx b/build/native.cxx new file mode 100644 index 0000000..6130578 --- /dev/null +++ b/build/native.cxx @@ -0,0 +1,15 @@ +// file : build/native.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include <build/native> + +using namespace std; + +namespace build +{ + using type_info = target::type_info; + + const type_info exe::ti_ {typeid (exe), "exe", &file::ti_}; + const type_info obj::ti_ {typeid (obj), "obj", &file::ti_}; +} |