From afc66d3013b7d47c6c22d6a99809bc3e7d1ff0dc Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 24 Oct 2024 14:44:20 +0200 Subject: implement breadth-first search pathfinding --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 51a2557..e89069e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,9 @@ add_executable(main CycleCollisionMethodCommand.cpp PathfindingContext.cpp XY.cpp + Pathfinder.cpp + DijkstraPathfinder.cpp + BreadthFirstPathfinder.cpp ) target_link_libraries(main -- cgit v1.2.3