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 /extern/qhull
parent0d0ab24e4a6e137a5c8261ad4341dd5e15b5c272 (diff)
[SCONS] Optimisation flags for msvc
Diffstat (limited to 'extern/qhull')
-rw-r--r--extern/qhull/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/extern/qhull/SConscript b/extern/qhull/SConscript
index 22a09a99345..1be051c4623 100644
--- a/extern/qhull/SConscript
+++ b/extern/qhull/SConscript
@@ -8,6 +8,8 @@ Import ('defines')
Import ('user_options_dict')
if sys.platform=='linux2' or sys.platform=='linux-i386':
qhull_env.Append (CCFLAGS = ['-O2', '-ansi'])
+elif sys.platform=='win32':
+ qhull_env.Append (CCFLAGS = ['/O2'])
elif sys.platform=='sunos':
qhull_env.Append (CCFLAGS = ['Xc', '-v', '-fast'])
else: