From c7913a354a3b8921cd8eb6a8c1ff9b4528606ffb Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 4 Dec 2018 15:01:23 +0300 Subject: Align with latest bdep-new --- .gitignore | 2 ++ libprint/libprint/buildfile | 26 +++++++++++++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 .gitignore 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 +} -- cgit v1.1