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
path: root/config
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-10-31 23:35:14 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-31 23:35:14 +0300
commit3f7535d3c3fa5e72ee7640c27827c47ad27c908e (patch)
treef88a03d77e60290569f581c4c7eed3bf9edcee58 /config
parent027d86b9ff5a4f7b859b28e33d3d40f264a4e55b (diff)
* silence compiler about warnings for C++ files a bit more.
- from what I can see now, the larger part of warnings is now about conversions "possible loss of data" (ie. double to float, etc).
Diffstat (limited to 'config')
-rw-r--r--config/win32-vc-config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py
index 6cc09748a10..a5aa76c2868 100644
--- a/config/win32-vc-config.py
+++ b/config/win32-vc-config.py
@@ -161,6 +161,7 @@ CC = 'cl.exe'
CXX = 'cl.exe'
CCFLAGS = ['/nologo', '/Ob1', '/J', '/W3', '/Gd', '/MT']
+CXXFLAGS = ['/EHsc']
BF_DEBUG_CCFLAGS = ['/Zi', '/FR${TARGET}.sbr']