Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rt rrt star #5

Open
wants to merge 10 commits into
base: RT_RRT_star
Choose a base branch
from
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ set(CMAKE_CXX_FLAGS "-std=c++11")
include_directories("include")

set(SRCS src/Random_sampling.cpp
src/RT_RRT_star.cpp)
src/RT_RRT_star.cpp)

set(PLANNERS planners)
add_library(${PLANNERS} SHARED ${SRCS})

add_executable(target test/main.cpp)
target_link_libraries(target ${PLANNERS})
Loading