Ver código fonte

obs-filters: Suppress LNK4098

defaultlib 'MSVCRT' conflicts with use of other libs; use
/NODEFAULTLIB:library
jpark37 3 anos atrás
pai
commit
da35719f83
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      plugins/obs-filters/CMakeLists.txt

+ 1 - 1
plugins/obs-filters/CMakeLists.txt

@@ -29,7 +29,7 @@ else()
 
   if(OS_WINDOWS)
     target_link_options(obs-filters PRIVATE "LINKER:/LTCG"
-                        "LINKER:/IGNORE:4099")
+                        "LINKER:/IGNORE:4098" "LINKER:/IGNORE:4099")
   endif()
 endif()