-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththegraph.pro
41 lines (38 loc) · 951 Bytes
/
thegraph.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
QT += widgets\
core\
svg
requires(qtConfig(filedialog))
QMAKE_CXX = gcc
QMAKE_CXXFLAGS = -c -Wall
HEADERS = mainwindow.h \
centralitywidget.h \
groupwidget.h \
include/edge.h \
include/graph.h \
include/vector.h \
include/vertex.h \
pathwidget.h \
rbpfilter.h \
renderarea.h \
settingdialog.h
SOURCES = main.cpp \
centralitywidget.cpp \
groupwidget.cpp \
include/edge.c \
include/graph.c \
include/vector.c \
include/vertex.c \
mainwindow.cpp \
pathwidget.cpp \
rbpfilter.cpp \
renderarea.cpp \
settingdialog.cpp
#! [0]
RESOURCES = thegraph.qrc
#! [0]
RC_ICONS = images/network.ico
# install
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/mainwindows/thegraph
INSTALLS += target
DISTFILES += \
.gitignore