diff --git a/scripts/cmake/CompilerSetup.cmake b/scripts/cmake/CompilerSetup.cmake index 72a7e8c67b8d94b8387020efa49bb0410c8df67f..15cbb475bf459e28c56fb3d4f991221a714d354a 100644 --- a/scripts/cmake/CompilerSetup.cmake +++ b/scripts/cmake/CompilerSetup.cmake @@ -1,5 +1,6 @@ INCLUDE(ResetConfigurations) # To Debug, Release, RelWithDbgInfo INCLUDE(SetDefaultBuildType) +INCLUDE(DisableCompilerFlag) SET_DEFAULT_BUILD_TYPE(Debug) INCLUDE(MSVCMultipleProcessCompile) # /MP switch (multi processor) for VS @@ -67,6 +68,8 @@ IF (WIN32) ) # Sets warning level 3 and ignores some warnings SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /wd4290 /wd4267") + + DisableCompilerFlag(DEBUG /RTC1) # cygwin ELSE (MSVC) MESSAGE (STATUS "Might be GCC under cygwin.")