Browse Source

wscript: conf.define instead of directly appending to DEFINES

pull/2/head
Alibek Omarov 5 years ago
parent
commit
4705683ebc
  1. 2
      wscript

2
wscript

@ -233,7 +233,7 @@ def configure(conf):
# check if we can use C99 tgmath # check if we can use C99 tgmath
if conf.check_cc(header_name='tgmath.h', mandatory=False): if conf.check_cc(header_name='tgmath.h', mandatory=False):
conf.env.append_unique('DEFINES', 'HAVE_TGMATH_H') conf.env.define('HAVE_TGMATH_H', 1)
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…
Cancel
Save