diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-12-05 18:07:52 +0300 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-05 18:07:06 +0200 |
commit | 66771d9784d81766200db9cae8bb60657eb6f4d4 (patch) | |
tree | 40132aa215aa10337e8994702c7d9b47bd9d59c5 | |
parent | 5eee6429e3de9f29a776d105d47b43e140214538 (diff) |
Adapt buildfiles to expansion change
-rw-r--r-- | hello/buildfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hello/buildfile b/hello/buildfile index ba3fb41..5c8d6db 100644 --- a/hello/buildfile +++ b/hello/buildfile @@ -8,11 +8,11 @@ if $abi_prerelease else lib{hello}: bin.lib.version = @-$abi_major.$abi_minor -cxx.poptions =+ -I$src_root +cxx.poptions =+ "-I$src_root" obja{*}: cxx.poptions += -DLIBHELLO_STATIC_BUILD objs{*}: cxx.poptions += -DLIBHELLO_SHARED_BUILD -lib{hello}: cxx.export.poptions = -I$src_root +lib{hello}: cxx.export.poptions = "-I$src_root" liba{hello}: cxx.export.poptions += -DLIBHELLO_STATIC libs{hello}: cxx.export.poptions += -DLIBHELLO_SHARED |