blob: 8f527e1bb32c9c1f4056380148f8f74aa849ddc8 (
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
39
40
41
|
TARGET = plugin
TARGETPATH = QtQuick/Controls
QT += qml quick widgets gui-private core-private
QMAKE_DOCS = $$PWD/doc/qtquickcontrols.qdocconf
QML_FILES = \
ApplicationWindow.qml \
Button.qml \
CheckBox.qml \
ComboBox.qml \
ContextMenu.qml \
GroupBox.qml \
Label.qml \
MenuBar.qml \
Menu.qml \
Page.qml \
PageAnimation.qml \
PageStack.qml \
PageTransition.qml \
ProgressBar.qml \
RadioButton.qml \
ScrollView.qml \
Slider.qml \
SpinBox.qml \
SplitView.qml \
StatusBar.qml \
Tab.qml \
TabView.qml \
TableView.qml \
TableViewColumn.qml \
TextArea.qml \
TextField.qml \
ToolBar.qml \
ToolButton.qml
include(plugin.pri)
CONFIG += no_cxx_module
load(qml_plugin)
|