summaryrefslogtreecommitdiffstats
path: root/src/webenginequick/ui/CMakeLists.txt
blob: aa5832ba6b9a2fe5d337e26541d60114a9c1d6ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
set(qml_files
    "AlertDialog.qml"
    "AuthenticationDialog.qml"
    "ColorDialog.qml"
    "ConfirmDialog.qml"
    "FilePicker.qml"
    "Menu.qml"
    "MenuItem.qml"
    "MenuSeparator.qml"
    "PromptDialog.qml"
    "ToolTip.qml"
    "TouchHandle.qml"
    "TouchSelectionMenu.qml"
)

set(resource_files
    "information.png"
    "question.png"
)

qt_internal_add_qml_module(WebEngineQuickDelegatesQml
    URI "QtWebEngine.ControlsDelegates"
    VERSION "${PROJECT_VERSION}"
    QML_FILES ${qml_files}
    PAST_MAJOR_VERSIONS 1
    NO_SYNC_QT
    PLUGIN_TARGET qtwebenginequickdelegatesplugin
    DEPENDENCIES QtQuickControls2
)

qt_internal_add_resource(qtwebenginequickdelegatesplugin "qtwebenginequickdelegatesplugin"
    PREFIX
        "/qt-project.org/imports/QtWebEngine/ControlsDelegates"
    FILES
        ${resource_files}
)