[SCons] Fix compiler flags included in cantera.pc

Missing '-std=c++0x' or equivalent would lead to compilation errors.
This commit is contained in:
Ray Speth 2016-12-21 19:25:51 -05:00
parent 1e08d7499c
commit d0a5003eac

View file

@ -32,7 +32,7 @@ if localenv['layout'] != 'debian' and env['OS'] != 'Windows':
pc_libs = list(localenv['cantera_libs'])
pc_libdirs = []
pc_incdirs = []
pc_cflags = []
pc_cflags = list(localenv['CXXFLAGS'])
localenv['mak_corelibs'] = '-lcantera'