blob: 7143b942a9b405c0776f7bd2c69e01cd8777dff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/src/installer/settings.cmake b/src/installer/settings.cmake
index 29d57b44..6ea63902 100644
--- a/src/installer/settings.cmake
+++ b/src/installer/settings.cmake
@@ -114,7 +114,7 @@ endfunction()
function(install_symbols targetName destination_path)
if(WIN32)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/${targetName}.pdb DESTINATION ${destination_path})
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${targetName}.pdb DESTINATION ${destination_path})
else()
strip_symbols(${targetName} strip_destination_file)
install(FILES ${strip_destination_file} DESTINATION ${destination_path})
|