blob: 61841e7ffdacfb135df8a0f14b8d14a0b2f28494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
lib{test}: cxx{utility} cxx{test base} extra/cxx{test}
cxx{test} hxx{test}: cli{test}
cxx{base} hxx{base}: cli{base}
cli.options += -I $src_root --include-with-brackets
extra/:
{
cxx{test} hxx{test}: cli{test}
cli.options += --include-prefix test/extra --guard-prefix TEST_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
cli.options += --include-prefix test --guard-prefix TEST \
--cli-namespace test::cli
|