From a8ce5c380c69539fe0c7c62c397634d9d0c9fde2 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/root.build | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 xsd-tests/build/root.build (limited to 'xsd-tests/build/root.build') 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