-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyefm-fswidget.pro
36 lines (26 loc) · 990 Bytes
/
yefm-fswidget.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
TEMPLATE = lib
TARGET = fswidget
CONFIG += staticlib
QT += core gui
# Include widgets in QT 5
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG(debug, debug|release) {
BUILD_TYPE = .d
CONFIG += warn_on
QMAKE_CFLAGS += -pg
QMAKE_CXXFLAGS += -pg
QMAKE_LFLAGS += -pg
} else {
BUILD_TYPE =
CONFIG += release warn_off
}
#===============================================================================================================================
INCLUDEPATH += global app \
dirmodel actionmgr pastemgr \
fswidget
#===============================================================================================================================
include(src-fswidget.pri)
#===============================================================================================================================
RESOURCES += \
data/yeimgs.qrc
#===============================================================================================================================