mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
11 lines
295 B
CMake
11 lines
295 B
CMake
#############
|
|
## Testing ##
|
|
#############
|
|
|
|
## Add gtest based cpp test target and link libraries
|
|
if (BUILD_TESTING)
|
|
find_package(ament_cmake_gtest REQUIRED)
|
|
ament_add_gtest(pick_place_test pick_place_test.cpp)
|
|
target_link_libraries(pick_place_test ${PROJECT_NAME}_pick_place_task)
|
|
endif()
|