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/Physics
parent0d0ab24e4a6e137a5c8261ad4341dd5e15b5c272 (diff)
[SCONS] Optimisation flags for msvc
Diffstat (limited to 'source/gameengine/Physics')
-rwxr-xr-xsource/gameengine/Physics/Sumo/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/gameengine/Physics/Sumo/SConscript b/source/gameengine/Physics/Sumo/SConscript
index dba05693c1e..126fb43e2da 100755
--- a/source/gameengine/Physics/Sumo/SConscript
+++ b/source/gameengine/Physics/Sumo/SConscript
@@ -19,6 +19,7 @@ phy_sumo_env.Append (CPPPATH = ['.',
phy_sumo_env.Append (CPPPATH = user_options_dict['SOLID_INCLUDE'])
if sys.platform=='win32':
- phy_sumo_env.Append (CXXFLAGS = ['/GR'])
+ phy_sumo_env.Append (CXXFLAGS = ['/GR'])
+ phy_sumo_env.Append ( CCFLAGS =['/O1'])
phy_sumo_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/PHY_Sumo', source=source_files)