summaryrefslogtreecommitdiff
path: root/libprint/libprint/buildfile
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-07-17 14:58:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-07-17 14:58:46 +0300
commit7109002658f60b544822259aa8936f778dd4a8eb (patch)
tree8626173a78797f81f7c31d0edc63106c35ee5824 /libprint/libprint/buildfile
parent14c0327b18b206b1b2d361ae4bf469398100b31d (diff)
Release version 1.0.0+6v1.0.0+6
Add .gitattributes file Add glue buildfile Update build/.gitignore files Rename int_libs and imp_libs variables to intf_libs and impl_libs in buildfile Add note about data-exporting DLLs to export.hxx Add LIBPRINT_VERSION_FULL macro definition to version.hxx.in
Diffstat (limited to 'libprint/libprint/buildfile')
-rw-r--r--libprint/libprint/buildfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/libprint/libprint/buildfile b/libprint/libprint/buildfile
index 40e0c14..3097c53 100644
--- a/libprint/libprint/buildfile
+++ b/libprint/libprint/buildfile
@@ -1,8 +1,8 @@
-int_libs = # Interface dependencies.
-imp_libs = # Implementation dependencies.
-#import imp_libs += libhello%lib{hello}
+intf_libs = # Interface dependencies.
+impl_libs = # Implementation dependencies.
+#import impl_libs += libhello%lib{hello}
-lib{print}: {hxx ixx txx cxx}{** -version} hxx{version} $imp_libs $int_libs
+lib{print}: {hxx ixx txx cxx}{** -version} hxx{version} $impl_libs $intf_libs
# Include the generated version header into the distribution (so that we don't
# pick up an installed one) and don't remove it when cleaning in src (so that
@@ -26,7 +26,7 @@ objs{*}: cxx.poptions += -DLIBPRINT_SHARED_BUILD
lib{print}:
{
cxx.export.poptions = "-I$out_root" "-I$src_root"
- cxx.export.libs = $int_libs
+ cxx.export.libs = $intf_libs
}
liba{print}: cxx.export.poptions += -DLIBPRINT_STATIC