-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathqt-manhattan-style.pro
79 lines (68 loc) · 1.64 KB
/
qt-manhattan-style.pro
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#-------------------------------------------------
#
# Project created by QtCreator 2013-01-31T11:37:22
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
# The code still used some deprecated stuff
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x040900
TARGET = qt-manhattan-style
TEMPLATE = lib
DEFINES += QTMANHATTANSTYLE_LIBRARY
INCLUDEPATH += src
SOURCES += \
stylehelper.cpp \
styledbar.cpp \
styleanimator.cpp \
stringutils.cpp \
qtcolorbutton.cpp \
qtcassert.cpp \
progressbar.cpp \
minisplitter.cpp \
manhattanstyle.cpp \
historycompleter.cpp \
fancytabwidget.cpp \
fancymainwindow.cpp \
fancylineedit.cpp \
fancyactionbar.cpp \
doubletabwidget.cpp \
extensions/simpleprogressbar.cpp \
extensions/tabwidget.cpp \
extensions/threelevelsitempicker.cpp
HEADERS +=\
stylehelper.h \
styledbar.h \
styleanimator.h \
stringutils.h \
qtcolorbutton.h \
qtcolorbutton_p.h \
qtcassert.h \
progressbar.h \
minisplitter.h \
manhattanstyle.h \
historycompleter.h \
fancytabwidget.h \
fancymainwindow.h \
fancylineedit.h \
fancyactionbar.h \
doubletabwidget.h \
coreconstants.h \
qt-manhattan-style_global.hpp \
extensions/simpleprogressbar.h \
extensions/tabwidget.h \
extensions/threelevelsitempicker.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}
FORMS += \
doubletabwidget.ui
RESOURCES += \
resources/resources.qrc
OTHER_FILES += \
CMakeLists.txt