diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-25 10:41:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-05-25 10:41:20 +0200 |
commit | a1f459f8446370704695919b3131653300866ee9 (patch) | |
tree | 8bc4670b2f9355d694e38443d99f506dd0ea9efc /unit-tests/cc/parser/buildfile | |
parent | 0cef93b4e2e9bf39b0ca542876f9ab1af6d0f01d (diff) |
Implement parsing of C++ module declarations
Diffstat (limited to 'unit-tests/cc/parser/buildfile')
-rw-r--r-- | unit-tests/cc/parser/buildfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/unit-tests/cc/parser/buildfile b/unit-tests/cc/parser/buildfile new file mode 100644 index 0000000..5d20367 --- /dev/null +++ b/unit-tests/cc/parser/buildfile @@ -0,0 +1,17 @@ +# file : unit-tests/cc/parser/buildfile +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +#@@ Temporary until we get utility library support. +# +import libs = libbutl%lib{butl} +src = cc/{lexer parser} token lexer diagnostics utility variable name b-options types-parsers \ +context scope parser target operation rule prerequisite file module function \ +functions-builtin functions-path functions-process-path functions-string \ +functions-target-triplet algorithm search dump filesystem scheduler \ +config/{utility init operation module} spec + +exe{driver}: cxx{driver} ../../../build2/cxx{$src} ../../../build2/liba{b} \ +$libs test{*} + +include ../../../build2/ |