12 lines
272 B
CMake
12 lines
272 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(rbs_tests)
|
|
|
|
find_package(ament_cmake REQUIRED)
|
|
|
|
if(BUILD_TESTING)
|
|
find_package(rbs_utils REQUIRED)
|
|
find_package(launch_testing_ament_cmake)
|
|
add_launch_test(integration_tests/integration_tests.py)
|
|
endif()
|
|
|
|
ament_package()
|