-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathfinding.pro
More file actions
executable file
·50 lines (42 loc) · 908 Bytes
/
Copy pathpathfinding.pro
File metadata and controls
executable file
·50 lines (42 loc) · 908 Bytes
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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
TARGET = pathfinding
TEMPLATE = app
SUBDIRS += ui
DESTDIR = bin
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build
INCLUDEPATH += src
FORMS += \
ui/mainwindow.ui \
ui/helpdialog.ui \
ui/newmapdialog.ui
HEADERS += \
src/algorithms.hpp \
src/helpdialog.h \
src/mainwindow.h \
src/newmapdialog.h \
src/tilemapscene.h \
src/tilemapview.h \
src/utils.h \
src/csvencoder.h \
src/benchmark.h \
src/graph.hpp \
src/geolocationgraph.h \
src/gridgraph.h
SOURCES += \
src/main.cpp \
src/helpdialog.cpp \
src/mainwindow.cpp \
src/newmapdialog.cpp \
src/tilemapscene.cpp \
src/tilemapview.cpp \
src/utils.cpp \
src/csvencoder.cpp \
src/benchmark.cpp \
src/gridgraph.cpp \
src/geolocationgraph.cpp
RESOURCES += \
resources.qrc