-
Notifications
You must be signed in to change notification settings - Fork 0
/
grafy4.pro
66 lines (57 loc) · 1.34 KB
/
grafy4.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-04-23T17:46:17
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = grafy4
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
vertex.cpp \
undirectedgraph.cpp \
topologicalsort.cpp \
maxstronglyconnectedcomponent.cpp \
directedgraph.cpp \
dag.cpp \
consistentgraphgenerator.cpp \
consistent.cpp \
engine.cpp \
matrixvievcell.cpp \
matrixview.cpp \
listviewremovebutton.cpp \
listviewitem.cpp \
listview.cpp \
addconnection.cpp \
connectionmatrixview.cpp \
graphpainter.cpp \
shortestpaths.cpp \
distancematrix.cpp
HEADERS += mainwindow.h \
vertex.h \
undirectedgraph.h \
topologicalsort.h \
maxstronglyconnectedcomponent.h \
directedgraph.h \
dag.h \
consistentgraphgenerator.h \
consistent.h \
engine.h \
matrixvievcell.h \
matrixview.h \
listviewremovebutton.h \
listviewitem.h \
listview.h \
addconnection.h \
connectionmatrixview.h \
graphpainter.h \
shortestpaths.h \
distancematrix.h
FORMS += mainwindow.ui \
addconnection.ui
SUBDIRS += \
Digraphs-2016-04-23.pro
DISTFILES += \
grafy4.pro.user \
README.md