Fix SCons path issue on Windows.

This commit is contained in:
Thomas Dinges 2015-07-29 21:48:24 +02:00
parent 7380166db2
commit d49703b298
1 changed files with 3 additions and 1 deletions

View File

@ -21,12 +21,14 @@
#
# ***** END LGPL LICENSE BLOCK *****
from os import path
Import ('env')
sources = env.Glob('intern/*.cpp') + env.Glob('FX/*.cpp')
# AUD_PyInit is for external audaspace only
sources.remove('intern/AUD_PyInit.cpp')
sources.remove(path.join('intern', 'AUD_PyInit.cpp'))
incs = '. intern FX ' + env['BF_PTHREADS_INC'] + ' ' + env['BF_BOOST_INC']
defs = []