return accidentally commented out engine module( fixes #315 )
This commit is contained in:
parent
90e2937b32
commit
7a3b3cd96f
10
wscript
10
wscript
@ -51,7 +51,7 @@ projects={
|
|||||||
'datacache',
|
'datacache',
|
||||||
'datamodel',
|
'datamodel',
|
||||||
'dmxloader',
|
'dmxloader',
|
||||||
# 'engine',
|
'engine',
|
||||||
'engine/voice_codecs/minimp3',
|
'engine/voice_codecs/minimp3',
|
||||||
'filesystem',
|
'filesystem',
|
||||||
'game/client',
|
'game/client',
|
||||||
@ -433,7 +433,7 @@ def check_deps(conf):
|
|||||||
# conf.multicheck(*a, run_all_tests = True, mandatory = True)
|
# conf.multicheck(*a, run_all_tests = True, mandatory = True)
|
||||||
|
|
||||||
def configure(conf):
|
def configure(conf):
|
||||||
conf.load('fwgslib reconfigure compiler_c compiler_cxx compiler_optimizations gccdeps msvcdeps')
|
conf.load('fwgslib reconfigure compiler_optimizations')
|
||||||
|
|
||||||
# Force XP compability, all build targets should add
|
# Force XP compability, all build targets should add
|
||||||
# subsystem=bld.env.MSVC_SUBSYSTEM
|
# subsystem=bld.env.MSVC_SUBSYSTEM
|
||||||
@ -444,8 +444,8 @@ def configure(conf):
|
|||||||
conf.env.MSVC_TARGETS = ['x86']
|
conf.env.MSVC_TARGETS = ['x86']
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
conf.load('msvc_pdb_ext msdev msvs')
|
conf.load('msvc_pdb_ext msdev msvs msvcdeps')
|
||||||
conf.load('subproject xcompile compiler_c compiler_cxx gitversion clang_compilation_database strip_on_install_v2 waf_unit_test enforce_pic')
|
conf.load('subproject xcompile compiler_c compiler_cxx gccdeps gitversion clang_compilation_database strip_on_install_v2 waf_unit_test enforce_pic')
|
||||||
if conf.env.DEST_OS == 'win32' and conf.env.DEST_CPU == 'amd64':
|
if conf.env.DEST_OS == 'win32' and conf.env.DEST_CPU == 'amd64':
|
||||||
conf.load('masm')
|
conf.load('masm')
|
||||||
elif conf.env.DEST_OS == 'darwin':
|
elif conf.env.DEST_OS == 'darwin':
|
||||||
@ -495,7 +495,7 @@ def configure(conf):
|
|||||||
cflags, linkflags = conf.get_optimization_flags()
|
cflags, linkflags = conf.get_optimization_flags()
|
||||||
|
|
||||||
|
|
||||||
flags = [] #'-M -MT']
|
flags = []
|
||||||
|
|
||||||
if conf.options.SANITIZE:
|
if conf.options.SANITIZE:
|
||||||
flags += ['-fsanitize=%s'%conf.options.SANITIZE, '-fno-sanitize=vptr']
|
flags += ['-fsanitize=%s'%conf.options.SANITIZE, '-fno-sanitize=vptr']
|
||||||
|
Loading…
Reference in New Issue
Block a user