From e2d51588f66a8a5f0ad0e9fc2fba4fefb0b2303d Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 1 Oct 2016 13:35:30 +0200 Subject: [PATCH] suppress annoying boost warning with msvc --- src/Mod/Path/libarea/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/libarea/CMakeLists.txt b/src/Mod/Path/libarea/CMakeLists.txt index 167a66173e..8359267ab2 100644 --- a/src/Mod/Path/libarea/CMakeLists.txt +++ b/src/Mod/Path/libarea/CMakeLists.txt @@ -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})