From 69b27586061a37c8b33aa657750c4581809f5347 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 17 Jul 2020 16:57:59 +0300 Subject: Release version 1.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 LIBFORMAT_VERSION_FULL macro definition to version.hxx.in --- libformat/libformat/buildfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libformat/libformat/buildfile') diff --git a/libformat/libformat/buildfile b/libformat/libformat/buildfile index 04043df..a2f3fdf 100644 --- a/libformat/libformat/buildfile +++ b/libformat/libformat/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{format}: {hxx ixx txx cxx}{** -version} hxx{version} $imp_libs $int_libs +lib{format}: {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 += -DLIBFORMAT_SHARED_BUILD lib{format}: { cxx.export.poptions = "-I$out_root" "-I$src_root" - cxx.export.libs = $int_libs + cxx.export.libs = $intf_libs } liba{format}: cxx.export.poptions += -DLIBFORMAT_STATIC -- cgit v1.1