Attempt to fix windows building with scons

This commit is contained in:
Sergey Sharybin 2013-03-22 08:53:11 +00:00
parent f11f6d179e
commit 516af2e2a7

@ -382,7 +382,9 @@ else:
env['CPPFLAGS'].append('-DWITH_AUDASPACE')
env['CPPFLAGS'].append('-DWITH_AVI')
env['CPPFLAGS'].append('-DWITH_BOOL_COMPAT')
env['CPPFLAGS'].append('-DHAVE_STDBOOL_H')
if env['OURPLATFORM'] not in ('win32-vc', 'win64-vc'):
env['CPPFLAGS'].append('-DHAVE_STDBOOL_H')
# lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
B.root_build_dir = env['BF_BUILDDIR']