From e82d1359ab7f360a663f4423ecfc3b07199af65d Mon Sep 17 00:00:00 2001 From: 603185423 <50170900+603185423@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:00:25 +0800 Subject: [PATCH] CMake Script - Add debug postfix "d" (#406) https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/issues/406 --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 512aee1..23848d9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -98,6 +98,7 @@ set_target_properties(${library_name} PROPERTIES CXX_EXTENSIONS OFF VERSION ${VERSION_SHORT} EXPORT_NAME ${library_name} + DEBUG_POSTFIX "d" ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib" LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib" RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/bin"