mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-31 09:32:17 -05:00
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:
@@ -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)
|
||||
|
||||
@@ -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 "")
|
||||
|
||||
Reference in New Issue
Block a user