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:
authorCampbell Barton <ideasman42@gmail.com>2011-09-27 16:08:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-27 16:08:35 +0400
commite4c299d9753d5493719a7e21fc9d23371e6f14ef (patch)
treee73bf55f5e25fbc413ffde7c3401175fed340684 /source/blender/blenkernel/CMakeLists.txt
parent6b825e67986c77fd114441553c364c1430e2e91d (diff)
comment warnings as errors for MSVC - it too easily made small problems like unused vars into errors which gets annoying for non developers.
with GCC we have *some* warnings as errors which works out better.
Diffstat (limited to 'source/blender/blenkernel/CMakeLists.txt')
-rw-r--r--source/blender/blenkernel/CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index 93ab29c5f49..91749143008 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -361,8 +361,9 @@ if(WITH_GAMEENGINE)
)
endif()
-if(MSVC)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
-endif()
+## Warnings as errors, this is too strict!
+#if(MSVC)
+# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
+#endif()
blender_add_lib(bf_blenkernel "${SRC}" "${INC}" "${INC_SYS}")