diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 16:37:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 16:37:30 +0200 |
commit | d3c88705b3e3b77150f60aed2527fa60d658991e (patch) | |
tree | 25c0980a0c38823cc9d0cb7a2c30cad651ce3d50 /bbot/buildfile | |
parent | c2cf5867b7c80fa0a24ddf1a509f726739771b43 (diff) |
Add out_root to include search path now that we auto-generate version
Diffstat (limited to 'bbot/buildfile')
-rw-r--r-- | bbot/buildfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/buildfile b/bbot/buildfile index 0a53207..1c7da48 100644 --- a/bbot/buildfile +++ b/bbot/buildfile @@ -22,11 +22,11 @@ if $version.pre_release else lib{bbot}: bin.lib.version = @"-$version.major.$version.minor" -cxx.poptions =+ "-I$src_root" +cxx.poptions =+ "-I$out_root" "-I$src_root" obja{*}: cxx.poptions += -DLIBBBOT_STATIC_BUILD objs{*}: cxx.poptions += -DLIBBBOT_SHARED_BUILD -lib{bbot}: cxx.export.poptions = "-I$src_root" +lib{bbot}: cxx.export.poptions = "-I$out_root" "-I$src_root" liba{bbot}: cxx.export.poptions += -DLIBBBOT_STATIC libs{bbot}: cxx.export.poptions += -DLIBBBOT_SHARED |