CMake: Re-generate platformsupport/clipboard

Change-Id: If05ae02f363a4a9ef6193f7f8822dcbbc58e1738
Reviewed-by: Albert Astals Cid <albert.astals.cid@kdab.com>
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
bb10
Tobias Hunger 2019-03-29 12:00:31 +01:00
parent 15f5a347fe
commit 1aff970c49
2 changed files with 11 additions and 7 deletions

View File

@ -6,6 +6,7 @@ if(APPLE)
find_library(FWDiskArbitration DiskArbitration)
find_library(FWFoundation Foundation)
find_library(FWIOKit IOKit)
find_library(FWImageIO ImageIO)
find_library(FWMobileCoreServices MobileCoreServices)
find_library(FWSecurity Security)
find_library(FWSystemConfiguration SystemConfiguration)

View File

@ -1,13 +1,9 @@
# Generated from clipboard.pro.
#####################################################################
## QtClipboardSupport Module:
## ClipboardSupport Module:
#####################################################################
find_library(FWAppKit AppKit)
find_library(FWImageIO ImageIO)
find_library(FWCoreFoundation CoreFoundation)
add_qt_module(ClipboardSupport
STATIC
SOURCES
@ -15,13 +11,20 @@ add_qt_module(ClipboardSupport
DEFINES
QT_NO_CAST_FROM_ASCII
LIBRARIES
${FWImageIO}
Qt::CorePrivate
Qt::Gui
)
#### Keys ignored in scope 1:.:clipboard.pro:<NONE>:
# CONFIG = "static" "internal_module"
# MODULE = "clipboard_support"
# _LOADED = "qt_module"
## Scopes:
#####################################################################
extend_target(ClipboardSupport CONDITION APPLE
LIBRARIES ${FWAppKit} ${FWImageIO} ${FWCoreFoundation}
extend_target(ClipboardSupport CONDITION APPLE_OSX
LIBRARIES
${FWAppKit}
)