Skip to content
Snippets Groups Projects
Commit 136c5b41 authored by Philipp Spilger's avatar Philipp Spilger
Browse files

fix: Install header files when target is 'use'd

* also install headers when they are not in toplevel project

Change-Id: Ia7c62b93f88a6a9a46b4b216a5e810ee50455287
......@@ -29,26 +29,23 @@ def build(bld):
bld (
target = 'boost_serialization_inc',
export_includes = '.',
depends_on = 'boost_header'
use = 'boost_header'
)
bld (
target = 'boost_serialization',
use = ['BOOST_SERIALIZATION_'],
use = ['BOOST_SERIALIZATION_', 'boost_header'],
export_includes = '.',
depends_on = 'boost_header'
)
bld (
target = 'boost_serialization_static',
use = ['BOOST_SERIALIZATION_STATIC_'],
use = ['BOOST_SERIALIZATION_STATIC_', 'boost_header'],
export_includes = '.',
depends_on = 'boost_header'
)
bld (
target = 'boost_patches',
use = ['BOOST_SERIALIZATION_'],
use = ['BOOST_SERIALIZATION_', 'boost_header'],
export_includes = '.',
depends_on = 'boost_header'
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment