From 5e527213a2430bb3018e5eebd909aef294edf9b5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- xsd-tests/build/.gitignore | 3 +++ xsd-tests/build/bootstrap.build | 9 +++++++++ xsd-tests/build/root.build | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 xsd-tests/build/.gitignore create mode 100644 xsd-tests/build/bootstrap.build create mode 100644 xsd-tests/build/root.build (limited to 'xsd-tests/build') diff --git a/xsd-tests/build/.gitignore b/xsd-tests/build/.gitignore new file mode 100644 index 0000000..4a730a3 --- /dev/null +++ b/xsd-tests/build/.gitignore @@ -0,0 +1,3 @@ +config.build +root/ +bootstrap/ diff --git a/xsd-tests/build/bootstrap.build b/xsd-tests/build/bootstrap.build new file mode 100644 index 0000000..49ad78f --- /dev/null +++ b/xsd-tests/build/bootstrap.build @@ -0,0 +1,9 @@ +# file : build/bootstrap.build +# license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +project = xsd-tests + +using version +using config +using dist +using test diff --git a/xsd-tests/build/root.build b/xsd-tests/build/root.build new file mode 100644 index 0000000..63c3bb4 --- /dev/null +++ b/xsd-tests/build/root.build @@ -0,0 +1,40 @@ +# file : build/root.build +# license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +define xsd: file +xsd{*}: extension = xsd + +define xml: file +xml{*}: extension = xml + +define map: file +map{*}: extension = map + +using in + +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 + +# Setup the xsd that we are testing. +# +import xsd = xsd%exe{xsd} + +# Every exe{} in this project is by default a test. +# +exe{*}: test = true + +# Specify the test target for cross-testing. +# +test.target = $cxx.target -- cgit v1.1