Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-03-22 12:53:11 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-22 12:53:11 +0400
commit516af2e2a79292a879fab439be1fa3095ed1b68c (patch)
tree625723cd3d80881d1ba75702783fd9b9bad8505f /SConstruct
parentf11f6d179eb4cdcbbd8ee1d613c7b0ead07bdda4 (diff)
Attempt to fix windows building with scons
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 3 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 72d5dca63b7..16e92907372 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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']