From d52c1fb406b1cef82c5f5a28fc1804d7d99a49d8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 17 Nov 2016 01:35:29 +0300 Subject: Add support for build2 for tests and examples --- tests/build/root.build | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/build/root.build (limited to 'tests/build/root.build') diff --git a/tests/build/root.build b/tests/build/root.build new file mode 100644 index 0000000..b503d3f --- /dev/null +++ b/tests/build/root.build @@ -0,0 +1,27 @@ +# file : tests/build/root.build +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +cxx.std = 11 + +using cxx + +hxx{*}: extension = hxx +ixx{*}: extension = ixx +txx{*}: extension = txx +cxx{*}: extension = cxx + +# Load cli module. It must be available from the system or from the base +# project. Generating files with cli is a part of the tests, so distributing +# pre-generated files would be meaningless. +# +# @@ How to initialize the module to use a base project cli executable by +# default (if present and not configured to use another one)? Should it be +# assignment like 'config.cli = $out_root/../cli/cli' prior 'using config' +# in bootstrap.build, but what if it doesn't exist? +# +using cli + +# Every exe{} in this subproject is by default a test. +# +exe{*}: test = true -- cgit v1.1