From 783efe3b1649f3426613e3c151e47c33a854010c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 8 Nov 2016 18:24:02 +0200 Subject: Add initial support for build2 build --- build/.gitignore | 1 + build/bootstrap.build | 26 ++++++++++++++++++++++++++ build/export.build | 10 ++++++++++ build/root.build | 12 ++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 build/.gitignore create mode 100644 build/bootstrap.build create mode 100644 build/export.build create mode 100644 build/root.build (limited to 'build') diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..225c27f --- /dev/null +++ b/build/.gitignore @@ -0,0 +1 @@ +config.build diff --git a/build/bootstrap.build b/build/bootstrap.build new file mode 100644 index 0000000..796ff93 --- /dev/null +++ b/build/bootstrap.build @@ -0,0 +1,26 @@ +# file : build/bootstrap.build +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +project = libcutl + +using build@0.4.0 + +version = 1.11.0-a1 + +abi_major = 1 +abi_minor = 11 +abi_patch = 0 +abi_prerelease = true + +revision = 0 + +dist.package = $project-$version + +if ($revision != 0) + dist.package += +$revision + +using config +using dist +using test +using install diff --git a/build/export.build b/build/export.build new file mode 100644 index 0000000..462cc4c --- /dev/null +++ b/build/export.build @@ -0,0 +1,10 @@ +# file : build/export.build +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +$out_root/: +{ + include cutl/ +} + +export $out_root/cutl/lib{cutl} diff --git a/build/root.build b/build/root.build new file mode 100644 index 0000000..1ecf785 --- /dev/null +++ b/build/root.build @@ -0,0 +1,12 @@ +# file : build/root.build +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : MIT; see accompanying LICENSE file + +cxx.std = 11 + +using cxx + +hxx{*}: extension = hxx +cxx{*}: extension = cxx +ixx{*}: extension = ixx +txx{*}: extension = txx -- cgit v1.1