CMake: Re-generate plugins/platforms/windows
Change-Id: I53f10995792d01e8f04cdb8f37fcf347132aa4fa Reviewed-by: Albert Astals Cid <albert.astals.cid@kdab.com>
This commit is contained in:
parent
bd0f9b61fd
commit
11f217d21b
@ -7,14 +7,17 @@
|
|||||||
add_qt_plugin(qwindows
|
add_qt_plugin(qwindows
|
||||||
TYPE platforms
|
TYPE platforms
|
||||||
SOURCES
|
SOURCES
|
||||||
openglblacklists.qrc
|
main.cpp
|
||||||
qtwindowsglobal.h
|
qtwindowsglobal.h
|
||||||
qwin10helpers.cpp qwin10helpers.h
|
qwin10helpers.cpp qwin10helpers.h
|
||||||
|
qwindowsbackingstore.cpp qwindowsbackingstore.h
|
||||||
qwindowscombase.h
|
qwindowscombase.h
|
||||||
qwindowscontext.cpp qwindowscontext.h
|
qwindowscontext.cpp qwindowscontext.h
|
||||||
qwindowscursor.cpp qwindowscursor.h
|
qwindowscursor.cpp qwindowscursor.h
|
||||||
qwindowsdialoghelpers.cpp qwindowsdialoghelpers.h
|
qwindowsdialoghelpers.cpp qwindowsdialoghelpers.h
|
||||||
qwindowsdropdataobject.cpp qwindowsdropdataobject.h
|
qwindowsdropdataobject.cpp qwindowsdropdataobject.h
|
||||||
|
qwindowsgdiintegration.cpp qwindowsgdiintegration.h
|
||||||
|
qwindowsgdinativeinterface.cpp qwindowsgdinativeinterface.h
|
||||||
qwindowsinputcontext.cpp qwindowsinputcontext.h
|
qwindowsinputcontext.cpp qwindowsinputcontext.h
|
||||||
qwindowsintegration.cpp qwindowsintegration.h
|
qwindowsintegration.cpp qwindowsintegration.h
|
||||||
qwindowsinternalmimedata.cpp qwindowsinternalmimedata.h
|
qwindowsinternalmimedata.cpp qwindowsinternalmimedata.h
|
||||||
@ -31,41 +34,45 @@ add_qt_plugin(qwindows
|
|||||||
qwindowstheme.cpp qwindowstheme.h
|
qwindowstheme.cpp qwindowstheme.h
|
||||||
qwindowsthreadpoolrunner.h
|
qwindowsthreadpoolrunner.h
|
||||||
qwindowswindow.cpp qwindowswindow.h
|
qwindowswindow.cpp qwindowswindow.h
|
||||||
main.cpp
|
|
||||||
qwindowsbackingstore.cpp qwindowsbackingstore.h
|
|
||||||
qwindowsgdiintegration.cpp qwindowsgdiintegration.h
|
|
||||||
qwindowsgdinativeinterface.cpp qwindowsgdinativeinterface.h
|
|
||||||
DEFINES
|
DEFINES
|
||||||
QT_NO_CAST_FROM_ASCII
|
QT_NO_CAST_FROM_ASCII
|
||||||
QT_NO_FOREACH
|
QT_NO_FOREACH
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::GuiPrivate
|
|
||||||
Qt::EventDispatcherSupportPrivate
|
Qt::EventDispatcherSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::ThemeSupportPrivate
|
Qt::ThemeSupportPrivate
|
||||||
gdi32
|
|
||||||
dwmapi
|
|
||||||
ole32
|
|
||||||
user32
|
|
||||||
winspool
|
|
||||||
imm32
|
|
||||||
winmm
|
|
||||||
oleaut32
|
|
||||||
shlwapi
|
|
||||||
shell32
|
|
||||||
advapi32
|
advapi32
|
||||||
|
dwmapi
|
||||||
|
gdi32
|
||||||
|
imm32
|
||||||
|
ole32
|
||||||
|
oleaut32
|
||||||
|
shell32
|
||||||
|
shlwapi
|
||||||
|
user32
|
||||||
|
winmm
|
||||||
|
winspool
|
||||||
wtsapi32
|
wtsapi32
|
||||||
# OTHER_FILES = "windows.json"
|
|
||||||
# PLUGIN_CLASS_NAME = "QWindowsIntegrationPlugin"
|
|
||||||
# QT_FOR_CONFIG = "gui"
|
|
||||||
# _LOADED = "qt_plugin"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Resources:
|
||||||
|
set_source_files_properties("openglblacklists/default.json"
|
||||||
|
PROPERTIES alias "default.json")
|
||||||
|
add_qt_resource(qwindows "openglblacklists" PREFIX "/qt-project.org/windows/openglblacklists" FILES
|
||||||
|
openglblacklists/default.json)
|
||||||
|
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:windows.pro:<NONE>:
|
||||||
|
# OTHER_FILES = "windows.json"
|
||||||
|
# PLUGIN_CLASS_NAME = "QWindowsIntegrationPlugin"
|
||||||
|
# QT_FOR_CONFIG = "gui"
|
||||||
|
# _LOADED = "qt_plugin"
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
# TODO
|
|
||||||
extend_target(qwindows CONDITION QT_FEATURE_accessibility
|
extend_target(qwindows CONDITION QT_FEATURE_accessibility
|
||||||
SOURCES
|
SOURCES
|
||||||
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
|
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
|
||||||
@ -89,17 +96,15 @@ extend_target(qwindows CONDITION QT_FEATURE_accessibility
|
|||||||
Qt::AccessibilitySupportPrivate
|
Qt::AccessibilitySupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Special case, disable vulkan for now because headers can't be found.
|
|
||||||
extend_target(qwindows CONDITION QT_FEATURE_vulkan
|
extend_target(qwindows CONDITION QT_FEATURE_vulkan
|
||||||
SOURCES
|
SOURCES
|
||||||
qwindowsvulkaninstance.cpp qwindowsvulkaninstance.h
|
qwindowsvulkaninstance.cpp qwindowsvulkaninstance.h
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
Qt::VulkanSupportPrivate
|
Qt::VulkanSupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#extend_target(qwindows CONDITION NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN
|
#### Keys ignored in scope 4:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# # PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
#)
|
|
||||||
|
|
||||||
extend_target(qwindows CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
extend_target(qwindows CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
@ -158,15 +163,34 @@ extend_target(qwindows CONDITION QT_FEATURE_sessionmanager
|
|||||||
qwindowssessionmanager.cpp qwindowssessionmanager.h
|
qwindowssessionmanager.cpp qwindowssessionmanager.h
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_target(qwindows CONDITION QT_FEATURE_imageformat_png
|
# Resources:
|
||||||
SOURCES
|
add_qt_resource(qwindows "cursors" PREFIX "/qt-project.org/windows/cursors" FILES
|
||||||
cursors.qrc
|
images/closedhandcursor_32.png
|
||||||
)
|
images/closedhandcursor_48.png
|
||||||
|
images/closedhandcursor_64.png
|
||||||
|
images/dragcopycursor_32.png
|
||||||
|
images/dragcopycursor_48.png
|
||||||
|
images/dragcopycursor_64.png
|
||||||
|
images/draglinkcursor_32.png
|
||||||
|
images/draglinkcursor_48.png
|
||||||
|
images/draglinkcursor_64.png
|
||||||
|
images/dragmovecursor_32.png
|
||||||
|
images/dragmovecursor_48.png
|
||||||
|
images/dragmovecursor_64.png
|
||||||
|
images/openhandcursor_32.png
|
||||||
|
images/openhandcursor_48.png
|
||||||
|
images/openhandcursor_64.png
|
||||||
|
images/splithcursor_32.png
|
||||||
|
images/splithcursor_48.png
|
||||||
|
images/splithcursor_64.png
|
||||||
|
images/splitvcursor_32.png
|
||||||
|
images/splitvcursor_48.png
|
||||||
|
images/splitvcursor_64.png)
|
||||||
|
|
||||||
# TODO
|
|
||||||
extend_target(qwindows CONDITION (QT_FEATURE_accessibility)
|
extend_target(qwindows CONDITION (QT_FEATURE_accessibility) AND (TARGET windowsuiautomation_supportPrivate)
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
Qt::WindowsUIAutomationSupportPrivate
|
windowsuiautomation_supportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_target(qwindows CONDITION QT_FEATURE_accessibility AND mingw
|
extend_target(qwindows CONDITION QT_FEATURE_accessibility AND mingw
|
||||||
@ -174,14 +198,6 @@ extend_target(qwindows CONDITION QT_FEATURE_accessibility AND mingw
|
|||||||
uuid
|
uuid
|
||||||
)
|
)
|
||||||
|
|
||||||
#extend_target(qwindows CONDITION QT_FEATURE_combined_angle_lib
|
# special case:
|
||||||
# DEFINES
|
# extend_target(qwindows CONDITION QT_FEATURE_combined_angle_lib ...
|
||||||
# LIBEGL_NAME=
|
# extend_target(qwindows CONDITION NOT QT_FEATURE_combined_angle_lib ...
|
||||||
# LIBGLESV2_NAME=
|
|
||||||
#)
|
|
||||||
|
|
||||||
#extend_target(qwindows CONDITION NOT QT_FEATURE_combined_angle_lib
|
|
||||||
# DEFINES
|
|
||||||
# LIBEGL_NAME=
|
|
||||||
# LIBGLESV2_NAME=
|
|
||||||
#)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user