1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Install debug symbols on Windows for debug builds

This commit is contained in:
Jon Beniston
2022-02-06 12:56:58 +00:00
parent c25837fcf7
commit 97496ae9f9
100 changed files with 518 additions and 10 deletions
@@ -60,3 +60,8 @@ target_link_libraries(${TARGET_NAME}
)
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
# Install debug symbols
if (WIN32)
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
endif()