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:
authorRay Molenkamp <github@lazydodo.com>2018-03-17 21:45:27 +0300
committerRay Molenkamp <github@lazydodo.com>2018-03-17 21:45:27 +0300
commit7427e3e50134692a5308cda21685d7231a5fcee2 (patch)
tree17f69de6d90a06788bdcaa6f7a51c7bb9354ff2c /CMakeLists.txt
parent64fbd50e4cc23dfb6f8ab5014e1e924136522079 (diff)
MSVC: ignore warning c4828 The file contains a character that is illegal.
The only place this warning is coming from is from comments in headers of 3rd party libs. we can safely repress this warning for now.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 025b76cd22b..9909544cd1a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1514,6 +1514,7 @@ elseif(CMAKE_C_COMPILER_ID MATCHES "MSVC")
"/wd4267" # conversion from 'size_t' to 'type', possible loss of data
"/wd4305" # truncation from 'type1' to 'type2'
"/wd4800" # forcing value to bool 'true' or 'false'
+ "/wd4828" # The file contains a character that is illegal
# errors:
"/we4013" # 'function' undefined; assuming extern returning int
"/we4133" # incompatible pointer types