updater: Fix defaultlib conflict

Trying to build in Debug fails due a default lib conflict:
LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use
/NODEFAULTLIB:library

Instead, we can set the updater to always use /MT instead of /MTd.
This commit is contained in:
Ryan Foster
2024-06-11 16:30:10 -04:00
parent 0f4e33c33e
commit cfd692ca15

View File

@@ -44,4 +44,4 @@ set_target_properties(
updater
PROPERTIES FOLDER frontend
OUTPUT_NAME updater
MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
MSVC_RUNTIME_LIBRARY "MultiThreaded")