-
Notifications
You must be signed in to change notification settings - Fork 0
/
gsafe.pri
61 lines (54 loc) · 1.5 KB
/
gsafe.pri
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
#-------------------------------------------------
#
# gSAFE
# http://hyperprog.com/gsafe/
#
#-------------------------------------------------
isEmpty(GSAFE_PATH) {
message( 'GSAFE_PATH is empty. use default value.' )
GSAFE_PATH = $$PWD/../gSAFE/
} else {
message( 'GSAFE_PATH is not empty.' )
message( $${GSAFE_PATH} )
}
# DEFINES += MODULE_REFRESHAGENT_NETSERVER
# DEFINES += MODULE_REFRESHAGENT_NETCLIENT
INCLUDEPATH += $${GSAFE_PATH}
SOURCES += \
$${GSAFE_PATH}data.cpp \
$${GSAFE_PATH}dm.cpp \
$${GSAFE_PATH}dmext.cpp \
$${GSAFE_PATH}dmjson.cpp \
$${GSAFE_PATH}builder.cpp \
$${GSAFE_PATH}ra.cpp \
$${GSAFE_PATH}gui.cpp \
$${GSAFE_PATH}guiext.cpp \
$${GSAFE_PATH}quicktable.cpp \
$${GSAFE_PATH}ftypes.cpp \
$${GSAFE_PATH}database.cpp \
$${GSAFE_PATH}dialog.cpp \
$${GSAFE_PATH}xo.cpp \
$${GSAFE_PATH}po.cpp \
$${GSAFE_PATH}dconsole.cpp \
$${GSAFE_PATH}xbio.cpp \
$${GSAFE_PATH}xbioconn.cpp
HEADERS += \
$${GSAFE_PATH}/gSafe \
$${GSAFE_PATH}data.h \
$${GSAFE_PATH}dm.h \
$${GSAFE_PATH}dmext.h \
$${GSAFE_PATH}builder.h \
$${GSAFE_PATH}ra.h \
$${GSAFE_PATH}gui.h \
$${GSAFE_PATH}guiext.h \
$${GSAFE_PATH}quicktable.h \
$${GSAFE_PATH}ftypes.h \
$${GSAFE_PATH}database.h \
$${GSAFE_PATH}dialog.h \
$${GSAFE_PATH}xo.h \
$${GSAFE_PATH}po.h \
$${GSAFE_PATH}dconsole.h \
$${GSAFE_PATH}xbio.h \
$${GSAFE_PATH}xbioconn.h
RESOURCES += $${GSAFE_PATH}gsafe.qrc
# end of gsafe.pri