Skip to content

Commit

Permalink
Include task composer in .run-cpack, fix typos in CMakeLists
Browse files Browse the repository at this point in the history
  • Loading branch information
Max DeSantis committed Jan 8, 2025
1 parent 8b71246 commit bf3c245
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .run-cpack
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ echo " artifact_dir: $artifact_dir"
echo " artifact_ext: $artifact_ext"
echo " build_dir: $build_dir"

declare -a StringArray=("tesseract_command_language" "tesseract_time_parameterization" "tesseract_motion_planners" "tesseract_process_managers")
declare -a StringArray=("tesseract_command_language" "tesseract_time_parameterization" "tesseract_motion_planners" "tesseract_process_managers" "tesseract_task_composer")

# Iterate the packages using for loop
for val in ${StringArray[@]}; do
Expand Down
4 changes: 2 additions & 2 deletions tesseract_motion_planners/descartes/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if(TESSERACT_PACKAGE)
DESCRIPTION "Tesseract motion planners descartes components"
COMPONENT_DEPENDS core simple
LINUX_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-collision-core"
"${TESSERACT_PACKAGE_PREFIX}tesseract-descartes-core"
"${TESSERACT_PACKAGE_PREFIX}descartes-light-core"
WINDOWS_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-collision-core"
"${TESSERACT_PACKAGE_PREFIX}tesseract-descartes-core")
"${TESSERACT_PACKAGE_PREFIX}descartes-light-core")
endif()
8 changes: 4 additions & 4 deletions tesseract_task_composer/planning/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ set(LINUX_DEPENDS
"${TESSERACT_PACKAGE_PREFIX}tesseract-command-language"
"${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-core"
"${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-simple"
"${TESSERACT_PACKAGE_PREFIX}tesseract-time-parameterizaton-core")
"${TESSERACT_PACKAGE_PREFIX}tesseract-time-parameterization-core")

set(WINDOWS_DEPENDS
"console-bridge"
Expand All @@ -68,7 +68,7 @@ set(WINDOWS_DEPENDS
"${TESSERACT_PACKAGE_PREFIX}tesseract-command-language"
"${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-core"
"${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-simple"
"${TESSERACT_PACKAGE_PREFIX}tesseract-time-parameterizaton-core")
"${TESSERACT_PACKAGE_PREFIX}tesseract-time-parameterization-core")

if(tesseract_motion_planners_trajopt_FOUND)
list(APPEND FACTORIES_SOURCE_FILES src/factories/planning_task_composer_trajopt_plugin_factory.cpp)
Expand All @@ -94,8 +94,8 @@ endif()
if(tesseract_motion_planners_trajopt_ifopt_FOUND)
list(APPEND FACTORIES_SOURCE_FILES src/factories/planning_task_composer_trajopt_ifopt_plugin_factory.cpp)
list(APPEND FACTORIES_SOURCE_LINK_LIBRARIES tesseract::tesseract_motion_planners_trajopt_ifopt)
list(APPEND LINUX_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-trajopt-ifopt")
list(APPEND WINDOWS_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-trajopt-ifopt")
list(APPEND LINUX_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-trajopt_ifopt")
list(APPEND WINDOWS_DEPENDS "${TESSERACT_PACKAGE_PREFIX}tesseract-motion-planners-trajopt_ifopt")
endif()

if(tesseract_time_parameterization_isp_FOUND)
Expand Down

0 comments on commit bf3c245

Please sign in to comment.