-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
33 lines (24 loc) · 1.05 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
##############################################################################
# Cmake
##############################################################################
cmake_minimum_required(VERSION 3.5)
project(kobuki_firmware)
##############################################################################
# Find Packages
##############################################################################
find_package(ament_cmake_ros REQUIRED)
##############################################################################
# Platform Configuration
##############################################################################
ament_package_xml()
##############################################################################
# Install
##############################################################################
install(
DIRECTORY firmware
DESTINATION share/${PROJECT_NAME}
)
##############################################################################
# Exports
##############################################################################
ament_package()