Regenerate printsupport plugins

Change-Id: I3820d86bf4a36dd8ea53e5847c8d4de4b1ea9c61
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Reviewed-by: Qt CMake Build Bot
This commit is contained in:
Alexandru Croitor 2019-10-07 18:03:47 +02:00
parent 115a76297b
commit 274571f6d5
4 changed files with 58 additions and 12 deletions

View File

@ -0,0 +1,11 @@
# Generated from printsupport.pro.
if(APPLE_OSX)
add_subdirectory(cocoa)
endif()
if(WIN32)
add_subdirectory(windows)
endif()
if(QT_FEATURE_cups AND UNIX AND NOT APPLE)
add_subdirectory(cups)
endif()

View File

@ -1,11 +1,11 @@
if (APPLE_OSX)
# Generated from printsupport.pro.
if(APPLE_OSX)
add_subdirectory(cocoa)
endif()
if (WIN32)
# TODO add_subdirectory(windows)
if(WIN32)
# add_subdirectory(windows) # special case TODO
endif()
if (UNIX AND NOT APPLE AND QT_FEATURE_cups)
if(QT_FEATURE_cups AND UNIX AND NOT APPLE)
add_subdirectory(cups)
endif()

View File

@ -0,0 +1,31 @@
# Generated from cups.pro.
#####################################################################
## cupsprintersupport Plugin:
#####################################################################
add_qt_plugin(cupsprintersupport
TYPE printsupport
CLASS_NAME QCupsPrinterSupportPlugin
SOURCES
main.cpp
qcupsprintengine.cpp qcupsprintengine_p.h
qcupsprintersupport.cpp qcupsprintersupport_p.h
qppdprintdevice.cpp qppdprintdevice.h
INCLUDE_DIRECTORIES
../../../printsupport/kernel
LIBRARIES
Cups::Cups
Qt::CorePrivate
Qt::GuiPrivate
Qt::PrintSupportPrivate
PUBLIC_LIBRARIES
Qt::Core
Qt::Gui
Qt::PrintSupport
)
#### Keys ignored in scope 1:.:.:cups.pro:<TRUE>:
# MODULE = "cupsprintersupport"
# OTHER_FILES = "cups.json"
# _LOADED = "qt_plugin"

View File

@ -17,13 +17,17 @@ add_qt_plugin(cupsprintersupport
INCLUDE_DIRECTORIES
../../../printsupport/kernel
LIBRARIES
Cups::Cups
Qt::CorePrivate
Qt::GuiPrivate
Qt::PrintSupport
Qt::PrintSupportPrivate
Cups::Cups
# MODULE = "cupsprintersupport"
# OTHER_FILES = "cups.json"
# PLUGIN_CLASS_NAME = "QCupsPrinterSupportPlugin"
# _LOADED = "qt_plugin"
PUBLIC_LIBRARIES
Qt::Core
Qt::Gui
Qt::PrintSupport
)
#### Keys ignored in scope 1:.:.:cups.pro:<TRUE>:
# MODULE = "cupsprintersupport"
# OTHER_FILES = "cups.json"
# _LOADED = "qt_plugin"