diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-04 15:01:23 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-04 15:01:23 +0300 |
commit | c7913a354a3b8921cd8eb6a8c1ff9b4528606ffb (patch) | |
tree | bcb2e18ce4b4e3fd56132e7961b5007b5054e64a | |
parent | b48fa47bdf91781c9c6054ba7f80f884284092e5 (diff) |
Align with latest bdep-new
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | libprint/libprint/buildfile | 26 |
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/libprint/libprint/buildfile b/libprint/libprint/buildfile index 4a888f3..c2a6d79 100644 --- a/libprint/libprint/buildfile +++ b/libprint/libprint/buildfile @@ -9,21 +9,30 @@ lib{print}: {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 += -DLIBPRINT_STATIC_BUILD objs{*}: cxx.poptions += -DLIBPRINT_SHARED_BUILD -lib{print}: cxx.export.poptions = "-I$out_root" "-I$src_root" +# Export options. +# +lib{print}: +{ + cxx.export.poptions = "-I$out_root" "-I$src_root" + cxx.export.libs = $int_libs +} liba{print}: cxx.export.poptions += -DLIBPRINT_STATIC libs{print}: cxx.export.poptions += -DLIBPRINT_SHARED -lib{print}: 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 libprint/ subdirectory of, say, /usr/include/ # recreating subdirectories. # -{hxx ixx txx}{*}: install = include/libprint/ -{hxx ixx txx}{*}: install.subdirs = true +{hxx ixx txx}{*}: +{ + install = include/libprint/ + install.subdirs = true +} |