aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-08-31 19:24:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-08-31 19:24:57 +0300
commit080fb39e0d41a2d293f2480a5de0673c605cfbdf (patch)
treeaca8b68059bb42ec756ef4221d75121f4c6058e3 /build
parent88d3b517c08e5a906a224b8b14730f8f80f9ae04 (diff)
Build infrastructure update
Diffstat (limited to 'build')
-rw-r--r--build/.gitignore1
-rw-r--r--build/bootstrap.build20
-rw-r--r--build/root.build18
3 files changed, 33 insertions, 6 deletions
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
index ba90909..0f03f0e 100644
--- a/build/bootstrap.build
+++ b/build/bootstrap.build
@@ -3,16 +3,24 @@
# license : GNU GPL v2; see accompanying LICENSE file
project = libodb-pgsql
-version = 2.5.0-a10
-revision = 0
using build@0.4.0-a1
-using config
-using dist
-using test
-using install
+
+version = 2.5.0-a10
+
+abi_major = 2
+abi_minor = 5
+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/root.build b/build/root.build
index fb0de84..5898b63 100644
--- a/build/root.build
+++ b/build/root.build
@@ -5,3 +5,21 @@
cxx.std = 11
using cxx
+
+hxx{*}: extension = hxx
+ixx{*}: extension = ixx
+txx{*}: extension = txx
+cxx{*}: extension = cxx
+
+cxx.poptions =+ -I$out_root -I$src_root
+
+# Load the cli module but only if it's available. This way a distribution that
+# includes pre-generated files can be built without installing cli.
+#
+using? cli
+
+if! $cli.loaded
+{
+ define cli: file
+ cli{*}: extension = cli
+}