From 7db0398f84526c2f929c598a1126dc64c33d6396 Mon Sep 17 00:00:00 2001 From: harleylara Date: Mon, 12 Feb 2024 03:45:26 +0100 Subject: [PATCH] add meta-package --- solo12_robot/CMakeLists.txt | 26 ++++++++++++++++++++++++++ solo12_robot/package.xml | 21 +++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 solo12_robot/CMakeLists.txt create mode 100644 solo12_robot/package.xml diff --git a/solo12_robot/CMakeLists.txt b/solo12_robot/CMakeLists.txt new file mode 100644 index 0000000..18d2423 --- /dev/null +++ b/solo12_robot/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.8) +project(solo12_robot) + +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) +# uncomment the following section in order to fill in +# further dependencies manually. +# find_package( REQUIRED) + +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_package() diff --git a/solo12_robot/package.xml b/solo12_robot/package.xml new file mode 100644 index 0000000..7ff469a --- /dev/null +++ b/solo12_robot/package.xml @@ -0,0 +1,21 @@ + + + + solo12_robot + 0.0.0 + TODO: Package description + harley + TODO: License declaration + + ament_cmake + + solo12_bringup + solo12_description + + ament_lint_auto + ament_lint_common + + + ament_cmake + +