You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-11Lines changed: 15 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,21 +54,25 @@ If you wish to be added to the list of known products/educational projects using
54
54
* Lighthouses AI contest https://github.com/marcan/lighthouses_aicontest
55
55
* Self-Driving Car Engineer Nanodegree Program https://github.com/vanAken/CarND-Path-Planning-Project
56
56
57
-
### Compilation
57
+
### Building
58
58
59
-
Enter the cpp folder and run make
59
+
Generally you can just include the stlastar.h and, optionally, the fsa.h header files and use it directly. The build instructions below are purely for the test suite and example executables.
60
60
61
-
#### Introduction
61
+
#### Using CMake
62
62
63
-
This implementation is intended to be simple to read yet fairly
64
-
efficient. To build it you can compile, with any recent C++ compiler,
In both cases you can execute the build using `make -C [build folder]` or `ninja -C [build folder]`.
72
76
73
77
#### Command line
74
78
@@ -99,4 +103,4 @@ it if you hit an out of memory assert during the search.
99
103
100
104
Compatibility notes:
101
105
102
-
This version of the code requires any standards compliant C++ using std C++11
106
+
This version of the code requires any standards compliant C++ using std C++11. To build it requires a minimum cmake version you can find in the `CMakeLists.txt` file.
0 commit comments