From c028f4cc5c21aa3ebb2c31361608448263aebf41 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 30 Sep 2013 01:54:18 +0000 Subject: [PATCH] [SCons] Link boost_thread when building cti2ctml Fixes compilation errors with some versions of Boost. --- src/apps/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/SConscript b/src/apps/SConscript index c0730c97f..9c913cbc1 100644 --- a/src/apps/SConscript +++ b/src/apps/SConscript @@ -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'])