suppress annoying boost warning with msvc

This commit is contained in:
wmayer
2016-10-01 13:35:30 +02:00
parent c07da3fa7e
commit 4ceae102e4

View File

@@ -5,7 +5,7 @@ if (CMAKE_BUILD_TOOL MATCHES "make")
endif (CMAKE_BUILD_TOOL MATCHES "make")
if(MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-D_CRT_SECURE_NO_WARNINGS /wd4244)
endif(MSVC)
include_directories(${PYTHON_INCLUDE_DIRS})