def build(bld):
# build the specfifc object
bld.objects(source="foo.cpp", includess="path/to/directory", target="foo")
# build the library and include that object file using 'use='
bld.stlib(source='bla.cpp blu.cpp', includes="this/path that/path", target='mylibrary', use='foo')
2条答案
按热度按时间hiz5n14c1#
我认为大多数解决方案将是更多行代码,而不仅仅是单独编译一个文件。
b4lqfgs42#
您需要使用
objects
编译特定文件,然后使用use
编译结果。大概是这样的: