summaryrefslogtreecommitdiff
path: root/cli-tests/build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-04-08 14:51:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-04-27 11:38:53 +0300
commit720c5a33b6a49cf328fdd7611f49153cf8f60247 (patch)
tree9725f3d1f42ec90fde84520f49647edea013ce5e /cli-tests/build
parent3183f3bb927a90783ae0aeaf190a0919377aabe4 (diff)
Separate tests and examples into individual packages
Also make cli module to be explicitly enabled via the config.cli configuration variable.
Diffstat (limited to 'cli-tests/build')
-rw-r--r--cli-tests/build/.gitignore3
-rw-r--r--cli-tests/build/bootstrap.build9
-rw-r--r--cli-tests/build/root.build27
3 files changed, 39 insertions, 0 deletions
diff --git a/cli-tests/build/.gitignore b/cli-tests/build/.gitignore
new file mode 100644
index 0000000..4a730a3
--- /dev/null
+++ b/cli-tests/build/.gitignore
@@ -0,0 +1,3 @@
+config.build
+root/
+bootstrap/
diff --git a/cli-tests/build/bootstrap.build b/cli-tests/build/bootstrap.build
new file mode 100644
index 0000000..f5c693e
--- /dev/null
+++ b/cli-tests/build/bootstrap.build
@@ -0,0 +1,9 @@
+# file : build/bootstrap.build
+# license : MIT; see accompanying LICENSE file
+
+project = cli-tests
+
+using version
+using config
+using dist
+using test
diff --git a/cli-tests/build/root.build b/cli-tests/build/root.build
new file mode 100644
index 0000000..53bde39
--- /dev/null
+++ b/cli-tests/build/root.build
@@ -0,0 +1,27 @@
+# file : build/root.build
+# license : MIT; see accompanying LICENSE file
+
+cxx.std = latest
+
+using cxx
+
+hxx{*}: extension = hxx
+ixx{*}: extension = ixx
+txx{*}: extension = txx
+cxx{*}: extension = cxx
+
+if ($cxx.target.system == 'win32-msvc')
+ cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+
+if ($cxx.class == 'msvc')
+ cxx.coptions += /wd4251 /wd4275 /wd4800
+
+using cli
+
+# Every exe{} in this subproject is by default a test.
+#
+exe{*}: test = true
+
+# Specify the test target for cross-testing.
+#
+test.target = $cxx.target