summaryrefslogtreecommitdiff
path: root/src/src.pro
blob: 867abd2fb769d683058a9c446a1d52da76a89b6b (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 = ../imports/QtDesktop/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 \
           qquicklayoutengine_p.h \
           qquicklayout.h \
           qquicklinearlayout.h \
           qquickcomponentsprivate.h \
           qtsplitterbase.h \
           qfiledialogitem.h

SOURCES += qtmenu.cpp \
           qtmenubar.cpp \
           qrangemodel.cpp \
           qstyleplugin.cpp \
           qstyleitem.cpp \
           qwheelarea.cpp \
           qtmenuitem.cpp \
           qwindowitem.cpp \
           qdesktopitem.cpp \
           qtoplevelwindow.cpp \
           qquicklayout.cpp \
           qquicklayoutengine.cpp \
           qquicklinearlayout.cpp \
           qquickcomponentsprivate.cpp \
           qtsplitterbase.cpp \
           qfiledialogitem.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