[SCons] Link boost_thread when building cti2ctml

Fixes compilation errors with some versions of Boost.
This commit is contained in:
Ray Speth 2013-09-30 01:54:18 +00:00
parent 2de0ae6350
commit c028f4cc5c

View file

@ -7,7 +7,7 @@ localenv.Prepend(CPPPATH=['#src', '#include', '#src/apps'])
def buildProgram(name, src):
prog = build(localenv.Program(target=pjoin('#build/bin', name),
source=src,
LIBS=env['cantera_libs']))
LIBS=env['cantera_libs']+env['boost_libs']))
install('$inst_bindir', prog)
buildProgram('cti2ctml', ['cti2ctml.cpp'])