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/c | |
parent | 9d45f82f821f0663a7c21c69c26d93fa0613d48a (diff) |
Replace int_ with intf_ and imp_ with impl_ in names
Diffstat (limited to 'libbuild2/c')
-rw-r--r-- | libbuild2/c/buildfile | 8 | ||||
-rw-r--r-- | libbuild2/c/init.cxx | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libbuild2/c/buildfile b/libbuild2/c/buildfile index fa23648..2225112 100644 --- a/libbuild2/c/buildfile +++ b/libbuild2/c/buildfile @@ -4,13 +4,13 @@ # NOTE: shared imports should go into root.build. # include ../ -imp_libs = ../lib{build2} # Implied interface dependency. +impl_libs = ../lib{build2} # Implied interface dependency. include ../cc/ -int_libs = ../cc/lib{build2-cc} +intf_libs = ../cc/lib{build2-cc} ./: lib{build2-c}: libul{build2-c}: {hxx ixx txx cxx}{** -**.test...} \ - $int_libs $imp_libs + $intf_libs $impl_libs # Unit tests. # @@ -52,7 +52,7 @@ if! $cross lib{build2-c}: { cxx.export.poptions = "-I$out_root" "-I$src_root" - cxx.export.libs = $int_libs + cxx.export.libs = $intf_libs } liba{build2-c}: cxx.export.poptions += -DLIBBUILD2_C_STATIC diff --git a/libbuild2/c/init.cxx b/libbuild2/c/init.cxx index 1636816..1849622 100644 --- a/libbuild2/c/init.cxx +++ b/libbuild2/c/init.cxx @@ -204,13 +204,13 @@ namespace build2 vp.insert<strings> ("c.export.coptions"), vp.insert<strings> ("c.export.loptions"), vp.insert<vector<name>> ("c.export.libs"), - vp.insert<vector<name>> ("c.export.imp_libs"), + vp.insert<vector<name>> ("c.export.impl_libs"), vp["cc.export.poptions"], vp["cc.export.coptions"], vp["cc.export.loptions"], vp["cc.export.libs"], - vp["cc.export.imp_libs"], + vp["cc.export.impl_libs"], vp.insert_alias (vp["cc.stdlib"], "c.stdlib"), // Same as cc.stdlib. |