mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
fb2006edf9
* Adding a port for nethost * Fixing ref, removing unneeded include, and marking unsupported architectures for nethost * Fixing the expected sha512 for nethost * Setting nethost to fail on static and uwp * Removing an unecessary file(REMOVE_RECURSE) from nethost * update baseline * [nethost] Update to latest from dotnet/runtime * [vcpkg-baseline] Update baseline for nethost * [vcpkg-baseline] Update baseline for nethost Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
14 lines
663 B
Diff
14 lines
663 B
Diff
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})
|