summaryrefslogtreecommitdiff
path: root/libhello/libhello/buildfile
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-07-17 15:27:45 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-07-17 15:27:45 +0300
commit7e60117d41c6ea4efd9a69494c98701fa231a49b (patch)
tree616173d489f120ae6d7ef69fd266f5d5d57c04da /libhello/libhello/buildfile
parentf0b8961cde7f6a1ea54d26cd2276e66f67676348 (diff)
Release version 1.1.0+6v1.1.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 LIBHELLO_VERSION_FULL macro definition to version.hxx.in
Diffstat (limited to 'libhello/libhello/buildfile')
-rw-r--r--libhello/libhello/buildfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/libhello/libhello/buildfile b/libhello/libhello/buildfile
index b1d0d96..6e6c7a3 100644
--- a/libhello/libhello/buildfile
+++ b/libhello/libhello/buildfile
@@ -1,7 +1,7 @@
-import int_libs = libformat%lib{format} # Interface dependency.
-import imp_libs = libprint%lib{print} # Implementation dependency.
+import intf_libs = libformat%lib{format} # Interface dependency.
+import impl_libs = libprint%lib{print} # Implementation dependency.
-lib{hello}: {hxx ixx txx cxx}{** -version} hxx{version} $imp_libs $int_libs
+lib{hello}: {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
@@ -25,7 +25,7 @@ objs{*}: cxx.poptions += -DLIBHELLO_SHARED_BUILD
lib{hello}:
{
cxx.export.poptions = "-I$out_root" "-I$src_root"
- cxx.export.libs = $int_libs
+ cxx.export.libs = $intf_libs
}
liba{hello}: cxx.export.poptions += -DLIBHELLO_STATIC