Skip to content

Commit

Permalink
wscript: use ConfigurationContext.define instead of appending to env[…
Browse files Browse the repository at this point in the history
…'DEFINES']
  • Loading branch information
a1batross committed Oct 11, 2019
1 parent 00f1906 commit b5a0564
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def options(opt):
def configure(conf):
if conf.env.DEST_OS2 == 'android':
conf.check_cc(lib='log')
conf.env.append_unique('DEFINES', '__MULTITEXTURE_SUPPORT__')
conf.env.append_unique('DEFINES', 'NANOGL_MANGLE_PREPEND')
conf.env.append_unique('DEFINES', 'REF_DLL')
conf.define('__MULTITEXTURE_SUPPORT__', 1)
conf.define('NANOGL_MANGLE_PREPEND', 1)
conf.define('REF_DLL', 1)
# stub
return

Expand Down

0 comments on commit b5a0564

Please sign in to comment.