From: Amine Khaldi Date: Sat, 21 Dec 2013 13:53:05 +0000 (+0000) Subject: [CMAKE] X-Git-Tag: ReactOS-0.3.16~518 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=282eceb38b70a9b4979a7829c28499c3282cacd8 [CMAKE] * Support only debug and release configuration types (in the VS solutions). svn path=/trunk/; revision=61317 --- diff --git a/reactos/cmake/Platform/Windows-MSVC.cmake b/reactos/cmake/Platform/Windows-MSVC.cmake index 94ed324c9b1..0d957237a60 100644 --- a/reactos/cmake/Platform/Windows-MSVC.cmake +++ b/reactos/cmake/Platform/Windows-MSVC.cmake @@ -51,7 +51,7 @@ if(CMAKE_GENERATOR MATCHES "Visual Studio 6") endif() if(NOT CMAKE_NO_BUILD_TYPE AND CMAKE_GENERATOR MATCHES "Visual Studio") set (CMAKE_NO_BUILD_TYPE 1) - set (CMAKE_CONFIGURATION_TYPES "Debug;Release;MinSizeRel;RelWithDebInfo" CACHE STRING + set (CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Semicolon separated list of supported configuration types, only supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything else will be ignored.") mark_as_advanced(CMAKE_CONFIGURATION_TYPES) endif()