mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
[SCons] Ignore yaml-cpp compiler warning
This commit is contained in:
parent
2050fee1b8
commit
8c534e863e
@ -34,6 +34,13 @@ def prep_gmock(env):
|
|||||||
return localenv
|
return localenv
|
||||||
|
|
||||||
|
|
||||||
|
def prep_yamlcpp(env):
|
||||||
|
localenv = prep_default(env)
|
||||||
|
if env['CC'] == 'cl':
|
||||||
|
# "class ... needs to have dll-interface to be used by clients of class ..."
|
||||||
|
localenv.Append(CCFLAGS='/wd4251')
|
||||||
|
return localenv
|
||||||
|
|
||||||
ext_copies = []
|
ext_copies = []
|
||||||
|
|
||||||
if not env['system_fmt']:
|
if not env['system_fmt']:
|
||||||
|
Loading…
Reference in New Issue
Block a user