Update mainui. Add --enable-bsp2 switch into wscript

This commit is contained in:
Alibek Omarov 2018-07-10 17:29:05 +03:00
parent 2edbcb996d
commit 2c0a03704c
2 changed files with 7 additions and 3 deletions

View File

@ -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

@ -1 +1 @@
Subproject commit 0c354a1d9c6a7443f85ba4c7a8f93141420f281d
Subproject commit 89a827276eecfeff1c9d97f24913f8757693dbce