mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 09:56:22 +01:00
waf: add linkflags before filtering cflags
This commit is contained in:
parent
94d0c78913
commit
03c73f56d2
5
wscript
5
wscript
@ -191,6 +191,9 @@ def configure(conf):
|
|||||||
'-Werror=parentheses',
|
'-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)
|
cflags = conf.get_flags_by_type(compiler_c_cxx_flags, conf.options.BUILD_TYPE, conf.env.COMPILER_CC)
|
||||||
if conf.env.COMPILER_CC == 'msvc':
|
if conf.env.COMPILER_CC == 'msvc':
|
||||||
conf.env.append_unique('CFLAGS', cflags)
|
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('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('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
|
conf.env.DEDICATED = conf.options.DEDICATED
|
||||||
# we don't need game launcher on dedicated
|
# we don't need game launcher on dedicated
|
||||||
|
Loading…
Reference in New Issue
Block a user