waf: add linkflags before filtering cflags
This commit is contained in:
parent
94d0c78913
commit
03c73f56d2
1 changed files with 3 additions and 2 deletions
5
wscript
5
wscript
|
@ -191,6 +191,9 @@ def configure(conf):
|
|||
'-Werror=parentheses',
|
||||
]
|
||||
|
||||
conf.env.append_unique('LINKFLAGS', conf.get_flags_by_type(
|
||||
linker_flags, conf.options.BUILD_TYPE, conf.env.COMPILER_CC))
|
||||
|
||||
cflags = conf.get_flags_by_type(compiler_c_cxx_flags, conf.options.BUILD_TYPE, conf.env.COMPILER_CC)
|
||||
if conf.env.COMPILER_CC == 'msvc':
|
||||
conf.env.append_unique('CFLAGS', cflags)
|
||||
|
@ -202,8 +205,6 @@ def configure(conf):
|
|||
conf.env.append_unique('CFLAGS', cflags + filter_cflags(conf, compiler_optional_flags, cflags, False))
|
||||
conf.env.append_unique('CXXFLAGS', cflags + filter_cflags(conf, compiler_optional_flags, cflags, True))
|
||||
|
||||
conf.env.append_unique('LINKFLAGS', conf.get_flags_by_type(
|
||||
linker_flags, conf.options.BUILD_TYPE, conf.env.COMPILER_CC))
|
||||
|
||||
conf.env.DEDICATED = conf.options.DEDICATED
|
||||
# we don't need game launcher on dedicated
|
||||
|
|
Loading…
Add table
Reference in a new issue