mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-29 13:30:32 +01:00
17 lines
343 B
Plaintext
17 lines
343 B
Plaintext
|
top = '.'
|
||
|
out = 'build'
|
||
|
|
||
|
def options(opt):
|
||
|
opt.load('compiler_cxx boost')
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.load('compiler_cxx boost')
|
||
|
|
||
|
if conf.options.boost_mt:
|
||
|
conf.check_boost('system thread log log_setup')
|
||
|
else:
|
||
|
conf.check_boost('log log_setup')
|
||
|
|
||
|
def build(bld):
|
||
|
bld.program(source='main.cpp', target='app', use='BOOST')
|