diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-04 12:50:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-04 12:50:16 +0200 |
commit | d1116775abe546187a979b2481c786b51c2eab0c (patch) | |
tree | 013e7d3dc399e4c78fa76036697ef958230fdcb1 /libbuild2/cc/buildfile | |
parent | 9d45f82f821f0663a7c21c69c26d93fa0613d48a (diff) |
Replace int_ with intf_ and imp_ with impl_ in names
Diffstat (limited to 'libbuild2/cc/buildfile')
-rw-r--r-- | libbuild2/cc/buildfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbuild2/cc/buildfile b/libbuild2/cc/buildfile index fc8809d..e98e3de 100644 --- a/libbuild2/cc/buildfile +++ b/libbuild2/cc/buildfile @@ -4,16 +4,16 @@ # NOTE: shared imports should go into root.build. # include ../ -imp_libs = ../lib{build2} # Implied interface dependency. +impl_libs = ../lib{build2} # Implied interface dependency. -import imp_libs += libpkgconf%lib{pkgconf} +import impl_libs += libpkgconf%lib{pkgconf} include ../bin/ -int_libs = ../bin/lib{build2-bin} +intf_libs = ../bin/lib{build2-bin} ./: lib{build2-cc}: libul{build2-cc}: {hxx ixx txx cxx}{** -**.test...} \ h{msvc-setup} \ - $int_libs $imp_libs + $intf_libs $impl_libs # Unit tests. # @@ -50,7 +50,7 @@ if ($cxx.target.class == 'windows') lib{build2-cc}: { cxx.export.poptions = "-I$out_root" "-I$src_root" - cxx.export.libs = $int_libs + cxx.export.libs = $intf_libs } liba{build2-cc}: cxx.export.poptions += -DLIBBUILD2_CC_STATIC |