Browse Source

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

pull/2/head
Alibek Omarov 6 years ago
parent
commit
2c0a03704c
  1. 8
      engine/wscript
  2. 2
      mainui

8
engine/wscript

@ -8,8 +8,9 @@ import os
top = '.' top = '.'
def options(opt): def options(opt):
# stub opt.add_option(
return '--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): def configure(conf):
# check for dedicated server build # 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.fatal('SDL2 not availiable! If you want to build dedicated server, specify --dedicated')
conf.env.append_unique('DEFINES', 'XASH_SDL') 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': if conf.env.DEST_OS == 'win32':
conf.check( lib='USER32' ) conf.check( lib='USER32' )
conf.check( lib='SHELL32' ) conf.check( lib='SHELL32' )

2
mainui

@ -1 +1 @@
Subproject commit 0c354a1d9c6a7443f85ba4c7a8f93141420f281d Subproject commit 89a827276eecfeff1c9d97f24913f8757693dbce
Loading…
Cancel
Save