mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-19 05:51:16 -04:00
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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user