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/.gitignore | 3 +++ xsd-examples/build/bootstrap.build | 9 +++++++++ xsd-examples/build/root.build | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 xsd-examples/build/.gitignore create mode 100644 xsd-examples/build/bootstrap.build create mode 100644 xsd-examples/build/root.build (limited to 'xsd-examples/build') diff --git a/xsd-examples/build/.gitignore b/xsd-examples/build/.gitignore new file mode 100644 index 0000000..4a730a3 --- /dev/null +++ b/xsd-examples/build/.gitignore @@ -0,0 +1,3 @@ +config.build +root/ +bootstrap/ diff --git a/xsd-examples/build/bootstrap.build b/xsd-examples/build/bootstrap.build new file mode 100644 index 0000000..d98c460 --- /dev/null +++ b/xsd-examples/build/bootstrap.build @@ -0,0 +1,9 @@ +# file : build/bootstrap.build +# license : not copyrighted - public domain + +project = xsd-examples + +using version +using config +using dist +using test 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