forked from exarus/GraphWays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraph_Ways.pro
54 lines (47 loc) · 1.46 KB
/
Graph_Ways.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
#-------------------------------------------------
#
# Project created by QtCreator 2014-03-29T19:26:40
#
#-------------------------------------------------
QT += core\
gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Graph_Ways
TEMPLATE = app
CONFIG += c++11
SOURCES += main.cpp\
mainwindow.cpp \
graphscene.cpp \
GraphParts/Vertex.cpp \
GraphicsObjects/VertexCircle.cpp \
GraphicsObjects/VertexGraphicsItem.cpp \
GraphicsObjects/VertexText.cpp \
GraphParts/Graph.cpp \
GraphParts/Edge.cpp \
GraphicsObjects/LineGraphicsItem.cpp \
GlobalSettings.cpp \
ShortestWaysDialog.cpp \
algoritmic_windows/AllPathsForm.cpp \
algoritmic_windows/SingleSourcePathsForm.cpp \
algoritmic_windows/AlgorithmErrorDialog.cpp \
algorythms.cpp
HEADERS += mainwindow.h \
graphscene.h \
GraphParts/Vertex.h \
GraphicsObjects/VertexCircle.h \
GraphicsObjects/VertexGraphicsItem.h \
GraphicsObjects/VertexText.h \
GraphParts/Graph.h \
GraphParts/Edge.h \
GraphicsObjects/LineGraphicsItem.h \
GlobalSettings.h \
ShortestWaysDialog.h \
algoritmic_windows/AllPathsForm.h \
algoritmic_windows/SingleSourcePathsForm.h \
algoritmic_windows/AlgorithmErrorDialog.h \
algorythms.h
FORMS += mainwindow.ui \
ShortestWaysDialog.ui \
algoritmic_windows/AllPathsForm.ui \
algoritmic_windows/SingleSourcePathsForm.ui \
algoritmic_windows/AlgorithmErrorDialog.ui