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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-04-22 08:50:41 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-04-22 08:50:41 +0400
commit892720ffade869bcb112e5ce7afa9e891eefa171 (patch)
tree68d7948bf684fedfd33d1c7841ffebef229d668b /source/gameengine/Ketsji/SConscript
parent0d0ab24e4a6e137a5c8261ad4341dd5e15b5c272 (diff)
[SCONS] Optimisation flags for msvc
Diffstat (limited to 'source/gameengine/Ketsji/SConscript')
-rw-r--r--source/gameengine/Ketsji/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/SConscript b/source/gameengine/Ketsji/SConscript
index 8f8b868a877..3c880246338 100644
--- a/source/gameengine/Ketsji/SConscript
+++ b/source/gameengine/Ketsji/SConscript
@@ -103,7 +103,8 @@ ketsji_env.Append (CPPPATH = ['.',
])
if sys.platform == 'win32':
- ketsji_env.Append (CXXFLAGS = ['/GR'])
+ ketsji_env.Append (CXXFLAGS = ['/GR'])
+ ketsji_env.Append ( CCFLAGS =['/Ox'])
ketsji_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
ketsji_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/KX_ketsji', source=source_files)