From a17bd4aab870d1aeec74d1dc6af7fec3d085feca Mon Sep 17 00:00:00 2001 From: Benjamin Buch Date: Mon, 27 Nov 2023 16:30:45 +0100 Subject: [PATCH] Install PDB files to runtime dir instead of library dir PDB files are loaded dynamically based on DLLs, so they should be in the same directory --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 744491123..800185ab6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -575,7 +575,7 @@ if(KDDW_FRONTEND_QT) if(MSVC AND NOT KDDockWidgets_STATIC) install( FILES "$/$" - DESTINATION ${INSTALL_LIBRARY_DIR} + DESTINATION ${INSTALL_RUNTIME_DIR} CONFIGURATIONS Debug RelWithDebInfo ) endif()