aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qtcomponents/styleitem/styleitem.pro
blob: 59f892d6490612fded3de3551c0de0057fb6173e (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
TEMPLATE = lib
CONFIG += qt plugin
QT += script
greaterThan(QT_MAJOR_VERSION, 4) {
    QT += widgets quick1
} else {
    QT += declarative
}

TARGET  = styleplugin
include(../../../../qtcreator.pri)
DESTDIR = $$IDE_LIBRARY_PATH/qtcomponents/plugin
OBJECTS_DIR = tmp
MOC_DIR = tmp

HEADERS += qtmenu.h \
           qtmenubar.h \
           qtmenuitem.h \
           qrangemodel_p.h \
           qrangemodel.h \
           qstyleplugin.h \
           qdeclarativefolderlistmodel.h \
           qstyleitem.h \
           qwheelarea.h

SOURCES += qtmenu.cpp \
           qtmenubar.cpp \
           qtmenuitem.cpp \
           qrangemodel.cpp \
           qstyleplugin.cpp \
           qdeclarativefolderlistmodel.cpp \
           qstyleitem.cpp \
           qwheelarea.cpp

!macx {
    target.path = /$${IDE_LIBRARY_BASENAME}/qtcreator/qtcomponents/plugin
    INSTALLS += target
}