فهرست منبع

libcaption: Disable compiler warnings about non-exhaustive switch cases

PatTheMav 3 سال پیش
والد
کامیت
62ca01e181
1فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 7 1
      deps/libcaption/CMakeLists.txt

+ 7 - 1
deps/libcaption/CMakeLists.txt

@@ -25,7 +25,13 @@ target_sources(
 
 target_compile_definitions(
   caption PRIVATE __STDC_CONSTANT_MACROS
-                  "$<$<BOOL:${OS_WINDOWS}>:_CRT_SECURE_NO_WARNINGS>")
+                  $<$<CXX_COMPILER_ID:MSVC>:_CRT_SECURE_NO_WARNINGS>)
+
+target_compile_options(
+  caption
+  PRIVATE
+    $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-Wno-unused-but-set-parameter>
+)
 
 target_include_directories(
   caption