Skip to content

Commit f26cccd

Browse files
author
Allen Winter
committed
Install the Windows pdb files in the bin dir
Install the Windows pdb files in the bin (or runtime) directory and not into the library dir.
1 parent e3c2973 commit f26cccd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ install(
141141
if(MSVC)
142142
install(
143143
FILES "$<TARGET_PDB_FILE_DIR:kdstatemachineeditor_core>/$<TARGET_PDB_FILE_NAME:kdstatemachineeditor_core>"
144-
DESTINATION ${LIB_INSTALL_DIR}
144+
DESTINATION ${BIN_INSTALL_DIR}
145145
CONFIGURATIONS Debug RelWithDebInfo
146146
)
147147
endif()

src/debuginterface/debuginterfaceclient/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ if(MSVC)
8787
install(
8888
FILES
8989
"$<TARGET_PDB_FILE_DIR:kdstatemachineeditor_debuginterfaceclient>/$<TARGET_PDB_FILE_NAME:kdstatemachineeditor_debuginterfaceclient>"
90-
DESTINATION ${LIB_INSTALL_DIR}
90+
DESTINATION ${BIN_INSTALL_DIR}
9191
CONFIGURATIONS Debug RelWithDebInfo
9292
)
9393
endif()

src/view/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ install(
100100
if(MSVC)
101101
install(
102102
FILES "$<TARGET_PDB_FILE_DIR:kdstatemachineeditor_view>/$<TARGET_PDB_FILE_NAME:kdstatemachineeditor_view>"
103-
DESTINATION ${LIB_INSTALL_DIR}
103+
DESTINATION ${BIN_INSTALL_DIR}
104104
CONFIGURATIONS Debug RelWithDebInfo
105105
)
106106
endif()

0 commit comments

Comments
 (0)