updater: Compile with static VC runtime

This commit is contained in:
derrod
2024-06-09 23:35:40 +02:00
committed by Ryan Foster
parent 6779052902
commit 0cfae862cd

View File

@@ -40,4 +40,8 @@ target_link_libraries(
# zstd is hardcoded with /DEFAULTLIB:LIBCMT
target_link_options(updater PRIVATE /NODEFAULTLIB:LIBCMT)
set_target_properties(updater PROPERTIES FOLDER frontend OUTPUT_NAME updater)
set_target_properties(
updater
PROPERTIES FOLDER frontend
OUTPUT_NAME updater
MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")