summaryrefslogtreecommitdiff
path: root/libhello/libhello/buildfile
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-07-17 17:14:33 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-07-17 17:14:33 +0300
commit65e2207b053b854ccb89589880bc6778939fee23 (patch)
treeea3ecb2b8966b6e1e94f12912dc84f0ae2a747f5 /libhello/libhello/buildfile
parenta69548c46440ccd24cd72e564faededd5068949b (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 LIBHELLO_VERSION_FULL macro definition to version.hxx.in
Diffstat (limited to 'libhello/libhello/buildfile')
-rw-r--r--libhello/libhello/buildfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/libhello/libhello/buildfile b/libhello/libhello/buildfile
index 505420e..04e8d20 100644
--- a/libhello/libhello/buildfile
+++ b/libhello/libhello/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{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
@@ -26,7 +26,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