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>2006-11-06 11:21:53 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-11-06 11:21:53 +0300
commit232bfbbf8dac4cefcfcc5419962bdd4427f63f5c (patch)
tree1bf05319df79cd8cdef40cfb3720dad1d88026d9 /source/gameengine/GamePlayer/common/SConscript
parent8e97a2955b2f99ec61189cb972c09676a013a60b (diff)
* compiler command-line fix for scons/win32-mingw
Diffstat (limited to 'source/gameengine/GamePlayer/common/SConscript')
-rw-r--r--source/gameengine/GamePlayer/common/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/GamePlayer/common/SConscript b/source/gameengine/GamePlayer/common/SConscript
index d12d3131ae5..944fcea3a51 100644
--- a/source/gameengine/GamePlayer/common/SConscript
+++ b/source/gameengine/GamePlayer/common/SConscript
@@ -66,7 +66,7 @@ incs += Split(env['BF_PNG_INC'])
incs += Split(env['BF_ZLIB_INC'])
cflags=[]
-if (sys.platform=='win32') & ( Environment().subst('$CC') != 'gcc'):
+if env['OURPLATFORM']=='win32-vc':
cflags = ['/GR']
env.BlenderLib (libname='gp_common', sources=source_files, includes=incs, defines = [], libtype='player', priority=5, compileflags=cflags)