macOS: Update static Qt libs

This commit is contained in:
Vicki Pfau 2022-05-08 00:50:08 -07:00
parent 2a4dcace5b
commit a1ea2066f7
1 changed files with 4 additions and 5 deletions

View File

@ -349,11 +349,10 @@ if(QT_STATIC)
elseif(APPLE) elseif(APPLE)
find_package(Cups) find_package(Cups)
find_package(Qt5PrintSupport) find_package(Qt5PrintSupport)
find_library(QTFREETYPE NAMES qtfreetype) list(APPEND QT_LIBRARIES Cups Qt5::PrintSupport Qt5::QCocoaIntegrationPlugin Qt5::CoreAudioPlugin Qt5::AVFServicePlugin Qt5::QCocoaPrinterSupportPlugin)
find_library(QTHARFBUZZ NAMES qtharfbuzzng qtharfbuzz) list(APPEND QT_LIBRARIES Qt5AccessibilitySupport Qt5CglSupport Qt5ClipboardSupport Qt5FontDatabaseSupport Qt5GraphicsSupport Qt5ThemeSupport)
find_library(QTPLATFORMSUPPORT NAMES Qt5PlatformSupport) list(APPEND QT_LIBRARIES "-framework AVFoundation" "-framework CoreMedia" "-framework SystemConfiguration" "-framework Security")
list(APPEND QT_LIBRARIES Cups Qt5::PrintSupport Qt5::QCocoaIntegrationPlugin Qt5::CoreAudioPlugin Qt5::AVFServicePlugin Qt5::QCocoaPrinterSupportPlugin ${QTPLATFORMSUPPORT} "-framework AVFoundation" "-framework CoreMedia" "-framework SystemConfiguration" "-framework Security") set_target_properties(Qt5::Core PROPERTIES INTERFACE_LINK_LIBRARIES "${QTPCRE}")
set_target_properties(Qt5::Core PROPERTIES INTERFACE_LINK_LIBRARIES "${QTPCRE};${QTHARFBUZZ};${QTFREETYPE}")
elseif(UNIX) elseif(UNIX)
list(APPEND QT_LIBRARIES Qt5::FontDatabaseSupport Qt5::XcbQpa) list(APPEND QT_LIBRARIES Qt5::FontDatabaseSupport Qt5::XcbQpa)
endif() endif()