From 7f9bf5cfd3d7ebb3c066e38c534b4022b56b2212 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Fri, 11 Aug 2017 14:52:43 +0200 Subject: [PATCH] cmake: allow user to override CMAKE_DEBUG_POSTFIX Closes #1763 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "") -- 2.47.3