-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved simple planner into own sub-directory
- Loading branch information
Showing
17 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
find_package(tesseract_environment REQUIRED) | ||
find_package(tesseract_command_language REQUIRED) | ||
|
||
add_library( | ||
${PROJECT_NAME}_simple | ||
src/simple_motion_planner.cpp | ||
src/profile/simple_planner_lvs_plan_profile.cpp | ||
src/profile/simple_planner_lvs_no_ik_plan_profile.cpp | ||
src/profile/simple_planner_fixed_size_assign_plan_profile.cpp | ||
src/profile/simple_planner_fixed_size_plan_profile.cpp) | ||
target_link_libraries(${PROJECT_NAME}_simple PUBLIC ${PROJECT_NAME}_core Boost::boost) | ||
target_compile_options(${PROJECT_NAME}_simple PRIVATE ${TESSERACT_COMPILE_OPTIONS_PRIVATE}) | ||
target_compile_options(${PROJECT_NAME}_simple PUBLIC ${TESSERACT_COMPILE_OPTIONS_PUBLIC}) | ||
target_compile_definitions(${PROJECT_NAME}_simple PUBLIC ${TESSERACT_COMPILE_DEFINITIONS}) | ||
target_clang_tidy(${PROJECT_NAME}_simple ENABLE ${TESSERACT_ENABLE_CLANG_TIDY}) | ||
target_cxx_version(${PROJECT_NAME}_simple PUBLIC VERSION ${TESSERACT_CXX_VERSION}) | ||
target_code_coverage( | ||
${PROJECT_NAME}_simple | ||
PRIVATE | ||
ALL | ||
EXCLUDE ${COVERAGE_EXCLUDE} | ||
ENABLE ${TESSERACT_ENABLE_CODE_COVERAGE}) | ||
target_include_directories(${PROJECT_NAME}_simple PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>" | ||
"$<INSTALL_INTERFACE:include>") | ||
add_dependencies(${PROJECT_NAME}_simple ${PROJECT_NAME}_core) | ||
|
||
# Mark cpp header files for installation | ||
install(DIRECTORY include/${PROJECT_NAME} DESTINATION include) | ||
|
||
# Install targets | ||
install_targets(TARGETS ${PROJECT_NAME}_simple) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.