vcpkg/ports/nethost/0002-settings-cmake.patch

14 lines
663 B
Diff
Raw Normal View History

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})