summaryrefslogtreecommitdiff
path: root/libxsd-tests/build
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd-tests/build')
-rw-r--r--libxsd-tests/build/.gitignore3
-rw-r--r--libxsd-tests/build/bootstrap.build9
-rw-r--r--libxsd-tests/build/root.build25
3 files changed, 37 insertions, 0 deletions
diff --git a/libxsd-tests/build/.gitignore b/libxsd-tests/build/.gitignore
new file mode 100644
index 0000000..4a730a3
--- /dev/null
+++ b/libxsd-tests/build/.gitignore
@@ -0,0 +1,3 @@
+config.build
+root/
+bootstrap/
diff --git a/libxsd-tests/build/bootstrap.build b/libxsd-tests/build/bootstrap.build
new file mode 100644
index 0000000..e10dbfc
--- /dev/null
+++ b/libxsd-tests/build/bootstrap.build
@@ -0,0 +1,9 @@
+# file : build/bootstrap.build
+# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+project = libxsd-tests
+
+using version
+using config
+using dist
+using test
diff --git a/libxsd-tests/build/root.build b/libxsd-tests/build/root.build
new file mode 100644
index 0000000..d511eb2
--- /dev/null
+++ b/libxsd-tests/build/root.build
@@ -0,0 +1,25 @@
+# file : build/root.build
+# license : GNU GPL v2 + exceptions; 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
+
+# Every exe{} in this project is by default a test.
+#
+exe{*}: test = true
+
+# Specify the test target for cross-testing.
+#
+test.target = $cxx.target