瀏覽代碼

obs-ffmpeg: Disable compiler warnings about non-exhaustive switch cases

PatTheMav 3 年之前
父節點
當前提交
3f2aad12cd
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      plugins/obs-ffmpeg/CMakeLists.txt

+ 5 - 0
plugins/obs-ffmpeg/CMakeLists.txt

@@ -56,6 +56,11 @@ endif()
 
 set_target_properties(obs-ffmpeg PROPERTIES FOLDER "plugins/obs-ffmpeg" PREFIX
                                                                         "")
+target_compile_options(
+  obs-ffmpeg
+  PRIVATE
+    $<$<OR:$<C_COMPILER_ID:Clang>,$<C_COMPILER_ID:AppleClang>,$<C_COMPILER_ID:GNU>>:-Wno-switch>
+)
 
 if(OS_WINDOWS)
   if(MSVC)