vcpkg/ports/nethost/0002-settings-cmake.patch
Tanner Gooding fb2006edf9 [nethost] Adding a port for nethost (#8701)
* 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>
2020-01-06 13:14:20 -08:00

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