forked from PathPlanning/AStar-JPS-ThetaStar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASearch.pro
48 lines (44 loc) · 921 Bytes
/
ASearch.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
#-------------------------------------------------
#
# Project created by QtCreator 2011-02-26T12:08:02
#
#-------------------------------------------------
TARGET = ASearch
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
QMAKE_CXXFLAGS += -std=c++11 -O2 -Wall -Wextra
win32 {
QMAKE_LFLAGS += -static -static-libgcc -static-libstdc++
}
SOURCES += \
tinyxml2.cpp \
xmllogger.cpp \
isearch.cpp \
mission.cpp \
map.cpp \
dijkstra.cpp \
config.cpp \
bfs.cpp \
astar.cpp \
asearch.cpp \
jp_search.cpp \
theta.cpp \
environmentoptions.cpp
HEADERS += \
tinyxml2.h \
node.h \
gl_const.h \
xmllogger.h \
isearch.h \
mission.h \
map.h \
ilogger.h \
dijkstra.h \
config.h \
bfs.h \
astar.h \
searchresult.h \
jp_search.h \
theta.h \
environmentoptions.h