[SCons] Fix compiler flags included in cantera.pc
Missing '-std=c++0x' or equivalent would lead to compilation errors.
This commit is contained in:
parent
1e08d7499c
commit
d0a5003eac
1 changed files with 1 additions and 1 deletions
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue