-
Notifications
You must be signed in to change notification settings - Fork 0
/
QontMan.pro
52 lines (41 loc) · 1.15 KB
/
QontMan.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
QT += core gui sql widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QontMan
TEMPLATE = app
SOURCES += src\main.cpp\
src\mainwindow.cpp \
src\PlainDb.cpp \
src\datamodel.cpp \
src/contact.cpp \
src/contview.cpp \
src/treemodel.cpp \
src/diagram.cpp \
src/dia/edge.cpp \
src/dia/graphwidget.cpp \
src/dia/node.cpp \
src/passport.cpp \
src/vcard.cpp
HEADERS += src\mainwindow.h \
src\contact.h \
src\PlainDb.h \
src\datamodel.h \
src/contview.h \
src/treemodel.h \
src/nodeinfo.h \
src/diagram.h \
src/dia/edge.h \
src/dia/graphwidget.h \
src/dia/node.h \
src/passport.h \
src/vcard.h
FORMS += src\mainwindow.ui \
src/contview.ui \
src/diagram.ui \
src/passport.ui
CONFIG += c++11
DISTFILES +=
RESOURCES += \
res.qrc
RC_FILE += resources.rc
INCLUDEPATH += "c:\Firebird\include"
LIBS+=-LC:\Firebird\bin -lfbclient