Workspace functional includes basic read from workspace and trajectory calculation for inspection
73 lines
1.8 KiB
CMake
73 lines
1.8 KiB
CMake
cmake_minimum_required(VERSION 3.8)
|
|
project(rbs_utils)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
add_compile_options(-Wall -Wextra -Wpedantic)
|
|
endif()
|
|
|
|
# find dependencies
|
|
find_package(ament_cmake REQUIRED)
|
|
find_package(rclcpp REQUIRED)
|
|
find_package(rclcpp_lifecycle REQUIRED)
|
|
find_package(tf2_ros REQUIRED)
|
|
find_package(tf2_eigen REQUIRED)
|
|
find_package(rviz_visual_tools REQUIRED)
|
|
find_package(geometry_msgs REQUIRED)
|
|
|
|
set(deps
|
|
rclcpp
|
|
rclcpp_lifecycle
|
|
tf2_ros
|
|
tf2_eigen
|
|
rviz_visual_tools
|
|
geometry_msgs
|
|
)
|
|
|
|
|
|
|
|
add_library(${PROJECT_NAME} SHARED src/rbs_utils.cpp)
|
|
|
|
install(
|
|
DIRECTORY include/
|
|
DESTINATION include
|
|
)
|
|
|
|
ament_target_dependencies(${PROJECT_NAME} PUBLIC ${deps})
|
|
|
|
# target_include_directories(asm_folder_process
|
|
# PUBLIC
|
|
# "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>"
|
|
# "$<INSTALL_INTERFACE:include/>")
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>"
|
|
"$<INSTALL_INTERFACE:include/>")
|
|
|
|
install(
|
|
TARGETS ${PROJECT_NAME}
|
|
EXPORT export_${PROJECT_NAME}
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
RUNTIME DESTINATION bin
|
|
)
|
|
|
|
if(BUILD_TESTING)
|
|
find_package(ament_lint_auto REQUIRED)
|
|
|
|
# the following line skips the linter which checks for copyrights
|
|
# comment the line when a copyright and license is added to all source files
|
|
set(ament_cmake_copyright_FOUND TRUE)
|
|
|
|
# the following line skips cpplint (only works in a git repo)
|
|
# comment the line when this package is in a git repo and when
|
|
# a copyright and license is added to all source files
|
|
set(ament_cmake_cpplint_FOUND TRUE)
|
|
ament_lint_auto_find_test_dependencies()
|
|
endif()
|
|
|
|
ament_export_targets(export_${PROJECT_NAME} HAS_LIBRARY_TARGET)
|
|
ament_export_dependencies(
|
|
${deps}
|
|
)
|
|
ament_package()
|