diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-04 13:11:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-04 13:11:09 +0200 |
commit | 2e8c139184101812586dec09e46b61ea9a424bcd (patch) | |
tree | 01b098ffd88f920f4f64b97ab23cc345643336a8 /libmprint | |
parent | 9822d88925f558d103943ef0a9e083f33c886868 (diff) |
Make libstd-modules interface dependency as it should
Diffstat (limited to 'libmprint')
-rw-r--r-- | libmprint/libmprint/buildfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libmprint/libmprint/buildfile b/libmprint/libmprint/buildfile index cfcad89..1a7e5cf 100644 --- a/libmprint/libmprint/buildfile +++ b/libmprint/libmprint/buildfile @@ -1,6 +1,6 @@ -import libs = libstd-modules%liba{std-modules} +import int_libs = libstd-modules%liba{std-modules} -lib{mprint}: {mxx cxx}{print} $libs +lib{mprint}: {mxx cxx}{print} $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. @@ -10,6 +10,8 @@ if $version.pre_release else lib{mprint}: bin.lib.version = @"-$version.major.$version.minor" +lib{mprint}: cxx.export.libs = $int_libs + # Install into the libmprint/ subdirectory of, say, /usr/include/. # mxx{*}: install = include/$project/ |