From: Turo Lamminen Date: Mon, 2 Oct 2017 10:08:20 +0000 (+0300) Subject: Disable warning 4351 on MSVC 2013 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5db7d3649f06abd153a2f81fd4da4f4f70da3a2;p=platform%2Fupstream%2Fassimp.git Disable warning 4351 on MSVC 2013 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ba219a4..7718002 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -203,6 +203,11 @@ IF ((CMAKE_C_COMPILER_ID MATCHES "GNU") AND NOT CMAKE_COMPILER_IS_MINGW) ELSEIF(MSVC) # enable multi-core compilation with MSVC add_compile_options(/MP) + + # disable "elements of array '' will be default initialized" warning on MSVC2013 + IF(MSVC12) + add_compile_options(/wd4351) + ENDIF() ELSEIF ( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" ) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fvisibility=hidden -fPIC -Wall -Wno-long-long -std=c++11" ) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")