mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-23 05:14:15 +00:00
Update mainui. Add --enable-bsp2 switch into wscript
This commit is contained in:
parent
2edbcb996d
commit
2c0a03704c
@ -8,8 +8,9 @@ import os
|
||||
top = '.'
|
||||
|
||||
def options(opt):
|
||||
# stub
|
||||
return
|
||||
opt.add_option(
|
||||
'--enable-bsp2', action = 'store_true', dest = 'SUPPORT_BSP2_FORMAT', default = False,
|
||||
help = 'build engine with BSP2 map support(recommended for Quake, breaks compability!)')
|
||||
|
||||
def configure(conf):
|
||||
# check for dedicated server build
|
||||
@ -31,6 +32,9 @@ def configure(conf):
|
||||
conf.fatal('SDL2 not availiable! If you want to build dedicated server, specify --dedicated')
|
||||
conf.env.append_unique('DEFINES', 'XASH_SDL')
|
||||
|
||||
if(conf.options.SUPPORT_BSP2_FORMAT):
|
||||
conf.env.append_unique('DEFINES', 'SUPPORT_BSP2_FORMAT')
|
||||
|
||||
if conf.env.DEST_OS == 'win32':
|
||||
conf.check( lib='USER32' )
|
||||
conf.check( lib='SHELL32' )
|
||||
|
2
mainui
2
mainui
@ -1 +1 @@
|
||||
Subproject commit 0c354a1d9c6a7443f85ba4c7a8f93141420f281d
|
||||
Subproject commit 89a827276eecfeff1c9d97f24913f8757693dbce
|
Loading…
x
Reference in New Issue
Block a user