blob: 353ab5ccb96b0f8b04aefc175d1395b7273be422 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
TEMPLATE = lib
CONFIG += qt plugin
QT += qml
QT += quick
QT += widgets
TARGET = styleplugin
DESTDIR = ../components/plugin
OBJECTS_DIR = obj
MOC_DIR = moc
HEADERS += qtmenu.h \
qtmenubar.h \
qrangemodel_p.h \
qrangemodel.h \
qstyleplugin.h \
qstyleitem.h \
qwheelarea.h \
qtmenuitem.h \
qwindowitem.h \
qdesktopitem.h \
qtoplevelwindow.h \
qcursorarea.h \
qquicklayoutengine_p.h \
qquicklayout.h \
qquicklinearlayout.h \
qtooltiparea.h \
qtsplitterbase.h
SOURCES += qtmenu.cpp \
qtmenubar.cpp \
qrangemodel.cpp \
qstyleplugin.cpp \
qstyleitem.cpp \
qwheelarea.cpp \
qtmenuitem.cpp \
qwindowitem.cpp \
qdesktopitem.cpp \
qtoplevelwindow.cpp \
qcursorarea.cpp \
qtooltiparea.cpp \
qquicklayout.cpp \
qquicklayoutengine.cpp \
qquicklinearlayout.cpp \
qtsplitterbase.cpp
TARGETPATH = QtDesktop/plugin
target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
win32 {
CONFIG(debug, debug|release) {
TARGET = $$member(TARGET, 0)d
}
}
mac {
LIBS += -framework Carbon
}
INSTALLS += target
|