Browse Source

aja: Disable deprecated declarations warnings on macOS and Linux

Deprecation warnings have been investigated and have been deemed
non-malicious for the time being.
PatTheMav 2 years ago
parent
commit
e27b013d47
2 changed files with 3 additions and 4 deletions
  1. 1 2
      UI/frontend-plugins/aja-output-ui/CMakeLists.txt
  2. 2 2
      plugins/aja/CMakeLists.txt

+ 1 - 2
UI/frontend-plugins/aja-output-ui/CMakeLists.txt

@@ -75,8 +75,7 @@ elseif(OS_MACOS)
             "$<LINK_LIBRARY:FRAMEWORK,CoreFoundation.framework>"
             "$<LINK_LIBRARY:FRAMEWORK,IOKit.framework>")
   # cmake-format: on
-  target_compile_options(aja-output-ui PRIVATE -Wno-error=deprecated-declarations
-                                               -Wno-quoted-include-in-framework-header)
+  target_compile_options(aja-output-ui PRIVATE -Wno-deprecated-declarations -Wno-quoted-include-in-framework-header)
 elseif(OS_LINUX OR OS_FREEBSD)
   find_package(X11 REQUIRED)
   target_link_libraries(aja-output-ui PRIVATE X11::X11 Qt::GuiPrivate)

+ 2 - 2
plugins/aja/CMakeLists.txt

@@ -58,9 +58,9 @@ elseif(OS_MACOS)
   find_library(APPKIT AppKit)
 
   target_link_libraries(aja PRIVATE ${IOKIT} ${COREFOUNDATION} ${APPKIT})
-  target_compile_options(aja PRIVATE -Wno-error=deprecated-declarations -Wno-shorten-64-to-32)
+  target_compile_options(aja PRIVATE -Wno-deprecated-declarations -Wno-shorten-64-to-32)
 elseif(OS_LINUX OR OS_FREEBSD)
-  target_compile_options(aja PRIVATE -Wno-error=deprecated-declarations)
+  target_compile_options(aja PRIVATE -Wno-deprecated-declarations)
 endif()
 
 set_target_properties_obs(aja PROPERTIES FOLDER plugins PREFIX "")