diff options
author | Simon Warta <simon@kullo.net> | 2017-08-11 14:52:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-12 17:37:30 +0200 |
commit | 7f9bf5cfd3d7ebb3c066e38c534b4022b56b2212 (patch) | |
tree | 58d014457fe12ad1c614ea9a985ba360b15f59c9 | |
parent | c078981332e2e6e01a10e5f40508198fbba5253a (diff) | |
download | curl-7f9bf5cfd3d7ebb3c066e38c534b4022b56b2212.tar.gz |
cmake: allow user to override CMAKE_DEBUG_POSTFIX
Closes #1763
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d9b9c42cf..dea1303f5 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 "") |