From 647e81c0bcc2465b3f936e9666301000bbdcd0aa Mon Sep 17 00:00:00 2001 From: narayana-dev <161452427+narayana-dev@users.noreply.github.com> Date: Sat, 15 Feb 2025 11:15:56 +0530 Subject: [PATCH] Update: Allow CMAKE_DEBUG_POSTFIX to be overridden Forcing _debug postfix will require applications to update their compile flags based on the release mode --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b5db23..4477a0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -415,7 +415,9 @@ if (NOT GFLAGS_IS_SUBPROJECT) endif () # Set postfixes for generated libraries based on buildtype. set(CMAKE_RELEASE_POSTFIX "") -set(CMAKE_DEBUG_POSTFIX "_debug") +if(NOT DEFINED CMAKE_DEBUG_POSTFIX) + set(CMAKE_DEBUG_POSTFIX "_debug") +endif() # ---------------------------------------------------------------------------- # installation directories