From: Simon Warta Date: Fri, 11 Aug 2017 12:52:43 +0000 (+0200) Subject: cmake: allow user to override CMAKE_DEBUG_POSTFIX X-Git-Tag: curl-7_55_1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f9bf5cfd3d7ebb3c066e38c534b4022b56b2212;p=thirdparty%2Fcurl.git cmake: allow user to override CMAKE_DEBUG_POSTFIX Closes #1763 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d9b9c42cfa..dea1303f5a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,7 +105,7 @@ if (ENABLE_CURLDEBUG) endif() # For debug libs and exes, add "-d" postfix -set(CMAKE_DEBUG_POSTFIX "-d" CACHE STRING "Set debug library postfix" FORCE) +set(CMAKE_DEBUG_POSTFIX "-d" CACHE STRING "Set debug library postfix") # initialize CURL_LIBS set(CURL_LIBS "")