diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-28 16:22:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-28 16:30:31 +0200 |
commit | 6efd6dc40d46f1fa2028a4259c8b2b56f866d6f7 (patch) | |
tree | b944fb9be6ccef52d66ce796dc4ae9da7d4f1185 /libbuild2/in/buildfile | |
parent | 28dcef63d86dc5a86919c45facddbf4e70d7b3bf (diff) |
Make lib{build2} "implied interface dependency" of modules
This makes our compilation and linking command lines a little bit saner.
Diffstat (limited to 'libbuild2/in/buildfile')
-rw-r--r-- | libbuild2/in/buildfile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/libbuild2/in/buildfile b/libbuild2/in/buildfile index b67ee00..a07e131 100644 --- a/libbuild2/in/buildfile +++ b/libbuild2/in/buildfile @@ -2,13 +2,11 @@ # copyright : Copyright (c) 2014-2019 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -import int_libs = libbutl%lib{butl} - include ../ -int_libs += ../lib{build2} +imp_libs = ../lib{build2} # Implied interface dependency. ./: lib{build2-in}: libul{build2-in}: {hxx ixx txx cxx}{** -**.test...} \ - $int_libs + $imp_libs # Unit tests. # @@ -34,11 +32,7 @@ objs{*}: cxx.poptions += -DLIBBUILD2_IN_SHARED_BUILD # Export options. # -lib{build2-in}: -{ - cxx.export.poptions = "-I$out_root" "-I$src_root" - cxx.export.libs = $int_libs -} +lib{build2-in}: cxx.export.poptions = "-I$out_root" "-I$src_root" liba{build2-in}: cxx.export.poptions += -DLIBBUILD2_IN_STATIC libs{build2-in}: cxx.export.poptions += -DLIBBUILD2_IN_SHARED |