File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ cmake_minimum_required (VERSION 3.8)
2+ project (integration_test)
3+
4+ if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
5+ add_compile_options (-Wall -Wextra -Wpedantic)
6+ endif ()
7+
8+ # find dependencies
9+ find_package (ament_cmake REQUIRED)
10+ find_package (rclcpp REQUIRED)
11+ find_package (rover_utils REQUIRED)
12+
13+
14+ ament_package()
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" ?>
2+ <?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3+ <package format =" 3" >
4+ <name >integration_test</name >
5+ <version >0.0.0</version >
6+ <description >TODO: Package description</description >
7+ <
maintainer email =
" [email protected] " >rowan</
maintainer >
8+ <license >TODO: License declaration</license >
9+
10+ <buildtool_depend >ament_cmake</buildtool_depend >
11+
12+ <depend >rclcpp</depend >
13+ <depend >rover_utils</depend >
14+
15+ <test_depend >ament_lint_auto</test_depend >
16+ <test_depend >ament_lint_common</test_depend >
17+
18+ <export >
19+ <build_type >ament_cmake</build_type >
20+ </export >
21+ </package >
Original file line number Diff line number Diff line change 1+ // name?
You can’t perform that action at this time.
0 commit comments