From 96908ec43ed27d9f34da27b6a94a6db357465056 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 14 May 2020 14:18:50 +0300 Subject: Add build script --- libbuild2/build/script/token.cxx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libbuild2/build/script/token.cxx (limited to 'libbuild2/build/script/token.cxx') diff --git a/libbuild2/build/script/token.cxx b/libbuild2/build/script/token.cxx new file mode 100644 index 0000000..289dfd2 --- /dev/null +++ b/libbuild2/build/script/token.cxx @@ -0,0 +1,23 @@ +// file : libbuild2/build/script/token.cxx -*- C++ -*- +// license : MIT; see accompanying LICENSE file + +#include + +using namespace std; + +namespace build2 +{ + namespace build + { + namespace script + { + void + token_printer (ostream& os, const token& t, bool d) + { + // No build script-specific tokens so far. + // + build2::script::token_printer (os, t, d); + } + } + } +} -- cgit v1.1