0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

rtmp-services: Suppress LNK4098

Suppress LNK4098 to allow building against pre-built Jansson for now.
This commit is contained in:
Ryan Foster 2022-11-21 22:58:44 -05:00
parent 00078a6a73
commit bfcca93424

View File

@ -43,6 +43,10 @@ if(OS_WINDOWS)
rtmp-services.rc)
target_sources(rtmp-services PRIVATE rtmp-services.rc)
if(MSVC)
target_link_options(rtmp-services PRIVATE "LINKER:/IGNORE:4098")
endif()
endif()
set_target_properties(rtmp-services PROPERTIES FOLDER "plugins" PREFIX "")