Fixes for VS 2015 build.

Change-Id: I23280e611163a89b8eba7b9b0016c297fea2396e
This commit is contained in:
Wouter van Oortmerssen
2017-04-24 10:29:25 -07:00
parent 0c80b3a7cc
commit e93a5652d0
2 changed files with 3 additions and 2 deletions

View File

@@ -146,7 +146,8 @@ elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
elseif(MSVC)
# Visual Studio pedantic build settings
# warning C4512: assignment operator could not be generated
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /WX /wd4512")
# warning C4316: object allocated on the heap may not be aligned
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /WX /wd4512 /wd4316")
endif()
if(FLATBUFFERS_CODE_COVERAGE)