aja: Disable deprecated declarations warnings on macOS and Linux

Deprecation warnings have been investigated and have been deemed
non-malicious for the time being.
This commit is contained in:
PatTheMav
2023-11-23 13:33:39 +01:00
committed by Patrick Heyer
parent 40124892cf
commit e27b013d47
2 changed files with 3 additions and 4 deletions

View File

@@ -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)

View File

@@ -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 "")