-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathfinding.pro
More file actions
44 lines (34 loc) · 756 Bytes
/
Pathfinding.pro
File metadata and controls
44 lines (34 loc) · 756 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
#-------------------------------------------------
#
# Project created by QtCreator 2015-05-28T18:50:36
#
#-------------------------------------------------
QT += core
QT -= gui
TARGET = Pathfinding
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
QMAKE_CXXFLAGS += -std=c++11
HEADERS += \
src/astar.h \
src/comparef.h \
src/dijkstra.h \
src/pathfinder.h \
src/test.h \
src/testharness.h \
src/testtype.h \
src/math/compare.h \
src/inode.h \
src/node.h
SOURCES += \
src/astar.cpp \
src/dijkstra.cpp \
src/main.cpp \
src/pathfinder.cpp \
src/test.cpp \
src/testharness.cpp \
src/testtype.cpp \
src/math/compare.cpp \
src/inode.cpp \
src/node.cpp