diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-02-08 09:24:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-02-13 12:42:42 +0200 |
commit | 8aee78c8d0eb06334571e596f6fbdf7ed5756f0c (patch) | |
tree | 12899b0b09c8fcbaf3a1064b28db8f6161003cbe /old-tests/cli/lib | |
parent | 5cefca444f7062c61cc9d118ffea5901e05186fd (diff) |
Tighten target constness further
Diffstat (limited to 'old-tests/cli/lib')
-rw-r--r-- | old-tests/cli/lib/libtest/test/buildfile | 4 | ||||
-rw-r--r-- | old-tests/cli/lib/test/buildfile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/old-tests/cli/lib/libtest/test/buildfile b/old-tests/cli/lib/libtest/test/buildfile index 6b0d9bd..a7667e6 100644 --- a/old-tests/cli/lib/libtest/test/buildfile +++ b/old-tests/cli/lib/libtest/test/buildfile @@ -13,8 +13,8 @@ extra/: --cli-namespace test::extra::cli } -cxx.poptions += -I$out_root -I$src_root -lib{test}: cxx.export.poptions = -I$out_root -I$src_root +cxx.poptions += "-I$out_root" "-I$src_root" +lib{test}: cxx.export.poptions = "-I$out_root" "-I$src_root" cli.options += --include-prefix test --guard-prefix TEST \ --cli-namespace test::cli diff --git a/old-tests/cli/lib/test/buildfile b/old-tests/cli/lib/test/buildfile index d3e784d..1f3d65c 100644 --- a/old-tests/cli/lib/test/buildfile +++ b/old-tests/cli/lib/test/buildfile @@ -3,4 +3,4 @@ import libs += cli-lib-libtest%lib{test} exe{driver}: cxx{driver} cli.cxx{test} $libs cli.cxx{test}: cli{test} -cxx.poptions += -I$out_root +cxx.poptions += "-I$out_root" |