-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathQFramer.pro
99 lines (87 loc) · 2.48 KB
/
QFramer.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#-------------------------------------------------
#
# Project created by QtCreator 2014-07-23T11:28:16
#
#-------------------------------------------------
QT += core gui printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
# application name
TARGET = QFramer
# type
TEMPLATE = app
DEPENDPATH += .
INCLUDEPATH += .
include(./QFramer/QFramer.pri)
# build dir
BuildDir =build_$$QT_VERSION
CONFIG(debug, debug|release) {
DESTDIR = $$PWD/$$BuildDir/debug
OBJECTS_DIR = $$PWD/$$BuildDir/debug/.obj
MOC_DIR = $$PWD/$$BuildDir/debug/.moc
RCC_DIR = $$PWD/$$BuildDir/debug/.rcc
UI_DIR = $$PWD/$$BuildDir/debug/.ui
} else {
DESTDIR = $$PWD/$$BuildDir/release
OBJECTS_DIR = $$PWD/$$BuildDir/release/.obj
MOC_DIR = $$PWD/$$BuildDir/release/.moc
RCC_DIR = $$PWD/$$BuildDir/release/.rcc
UI_DIR = $$PWD/$$BuildDir/release/.ui
}
# source
SOURCES += \
dialogs/aboutdialog.cpp \
dialogs/bgskinpopup.cpp \
dialogs/settingdialog.cpp \
functionpages/aboutpage.cpp \
functionpages/ftablewidget.cpp \
functionpages/gradientshow.cpp \
functionpages/mathplot.cpp \
functionpages/rightfloatwindow.cpp \
functionpages/uielement.cpp \
mainwindow/centerwindow.cpp \
mainwindow/mainwindow.cpp \
mainwindow/settingmenu.cpp \
mainwindow/settingmenucontroller.cpp \
mainwindow/thememenu.cpp \
qcustomplot/fcustomplot.cpp \
qcustomplot/qcustomplot.cpp \
main.cpp \
functionpages/waterwidget.cpp \
functionpages/waterview.cpp \
functionpages/animationgradientlabel.cpp \
functionpages/qssbuilder.cpp
# header
HEADERS += \
dialogs/aboutdialog.h \
dialogs/bgskinpopup.h \
dialogs/settingdialog.h \
functionpages/aboutpage.h \
functionpages/ftablewidget.h \
functionpages/gradientshow.h \
functionpages/mathplot.h \
functionpages/rightfloatwindow.h \
functionpages/uielement.h \
mainwindow/centerwindow.h \
mainwindow/mainwindow.h \
mainwindow/settingmenu.h \
mainwindow/settingmenucontroller.h \
mainwindow/thememenu.h \
qcustomplot/fcustomplot.h \
qcustomplot/qcustomplot.h \
functionpages/waterwidget.h \
functionpages/waterview.h \
functionpages/animationgradientlabel.h \
functionpages/qssbuilder.h
# resources
RESOURCES += \
QFramer.qrc
# QT4.8 applciation icon
contains(QT_MAJOR_VERSION, 4){
win32{
RC_FILE = QFramer.rc
}
}
# QT5 applciation icon
contains(QT_MAJOR_VERSION, 5){
RC_ICONS = "skin/images/QFramer.ico"
}