From: James Turner Date: Mon, 26 Sep 2011 12:32:34 +0000 (+0100) Subject: Make the common case the default: no library suffix for RelWithDbg or MinSizeRel... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a459b8fdbb932dc686f88018b7c9c616c650c002;p=simgear.git Make the common case the default: no library suffix for RelWithDbg or MinSizeRel builds. Of course you can still specify a suffix if desired. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 63384bf6..674fbffb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -158,8 +158,8 @@ endif(HAVE_CLOCK_GETTIME) SET(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "add a postfix, usually d on windows") SET(CMAKE_RELEASE_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows") -SET(CMAKE_RELWITHDEBINFO_POSTFIX "rd" CACHE STRING "add a postfix, usually empty on windows") -SET(CMAKE_MINSIZEREL_POSTFIX "s" CACHE STRING "add a postfix, usually empty on windows") +SET(CMAKE_RELWITHDEBINFO_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows") +SET(CMAKE_MINSIZEREL_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows") # isnan might not be real symbol, so can't check using function_exists check_cxx_source_compiles(