summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-12-04 15:00:48 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-12-04 15:00:48 +0300
commitef2e671be2645170dbee1a572cbc202dce67c156 (patch)
tree7aed3dc700409c3eaec0e0ba4215257a8825a733
parenta64083a5319853772c8e4d32f4af24d6292a2940 (diff)
Align with latest bdep-new
-rw-r--r--.gitignore2
-rw-r--r--libformat/libformat/buildfile26
2 files changed, 21 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..392d774
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.bdep/
+
diff --git a/libformat/libformat/buildfile b/libformat/libformat/buildfile
index 7b1797e..da2d45a 100644
--- a/libformat/libformat/buildfile
+++ b/libformat/libformat/buildfile
@@ -9,21 +9,30 @@ lib{format}: {hxx ixx txx cxx}{** -version} hxx{version} $imp_libs $int_libs
# clean results in a state identical to distributed).
#
hxx{version}: in{version} $src_root/manifest
-hxx{version}: dist = true
-hxx{version}: clean = ($src_root != $out_root)
+hxx{version}:
+{
+ dist = true
+ clean = ($src_root != $out_root)
+}
+# Build options.
+#
cxx.poptions =+ "-I$out_root" "-I$src_root"
obja{*}: cxx.poptions += -DLIBFORMAT_STATIC_BUILD
objs{*}: cxx.poptions += -DLIBFORMAT_SHARED_BUILD
-lib{format}: cxx.export.poptions = "-I$out_root" "-I$src_root"
+# Export options.
+#
+lib{format}:
+{
+ cxx.export.poptions = "-I$out_root" "-I$src_root"
+ cxx.export.libs = $int_libs
+}
liba{format}: cxx.export.poptions += -DLIBFORMAT_STATIC
libs{format}: cxx.export.poptions += -DLIBFORMAT_SHARED
-lib{format}: cxx.export.libs = $int_libs
-
# For pre-releases use the complete version to make sure they cannot be used
# in place of another pre-release or the final version. See the version module
# for details on the version.* variable values.
@@ -36,5 +45,8 @@ else
# Install into the libformat/ subdirectory of, say, /usr/include/
# recreating subdirectories.
#
-{hxx ixx txx}{*}: install = include/libformat/
-{hxx ixx txx}{*}: install.subdirs = true
+{hxx ixx txx}{*}:
+{
+ install = include/libformat/
+ install.subdirs = true
+}