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/cc/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/cc/buildfile')
-rw-r--r-- | libbuild2/cc/buildfile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libbuild2/cc/buildfile b/libbuild2/cc/buildfile index 5b3d8eb..50192fa 100644 --- a/libbuild2/cc/buildfile +++ b/libbuild2/cc/buildfile @@ -2,17 +2,16 @@ # copyright : Copyright (c) 2014-2019 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -import int_libs = libbutl%lib{butl} -import imp_libs = libpkgconf%lib{pkgconf} - include ../ -int_libs += ../lib{build2} +imp_libs = ../lib{build2} # Implied interface dependency. + +import imp_libs += libpkgconf%lib{pkgconf} include ../bin/ -int_libs += ../bin/lib{build2-bin} +int_libs = ../bin/lib{build2-bin} ./: lib{build2-cc}: libul{build2-cc}: {hxx ixx txx cxx}{** -**.test...} \ - $imp_libs $int_libs + $int_libs $imp_libs # Unit tests. # |