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-examples/build/root.build | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 xsd-examples/build/root.build (limited to 'xsd-examples/build/root.build') diff --git a/xsd-examples/build/root.build b/xsd-examples/build/root.build new file mode 100644 index 0000000..5d7a5b4 --- /dev/null +++ b/xsd-examples/build/root.build @@ -0,0 +1,38 @@ +# file : build/root.build +# license : not copyrighted - public domain + +define xsd: file +xsd{*}: extension = xsd + +define xml: file +xml{*}: extension = xml + +define map: file +map{*}: extension = map + +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 using. +# +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