-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aab48d3
commit 2c8675a
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(geo_map_msgs) | ||
|
||
find_package(catkin REQUIRED COMPONENTS message_generation std_msgs) | ||
|
||
include_directories(include) | ||
|
||
add_service_files( | ||
FILES | ||
Trigger.srv | ||
SetAngle.srv | ||
SetMaxSpeed.srv | ||
GetPosition.srv | ||
TakeMeasurement.srv | ||
SetMeasurementDepth.srv | ||
) | ||
|
||
generate_messages(DEPENDENCIES std_msgs) | ||
|
||
catkin_package( | ||
INCLUDE_DIRS include | ||
CATKIN_DEPENDS message_runtime std_msgs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Geomap Message | ||
# | ||
|
||
std_msgs/Header header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>geo_map_msgs</name> | ||
<version>0.0.2</version> | ||
<description> | ||
snowsampler_msgs includes the definition for custom services for the <a href="https://github.com/Jaeyoung-Lim/adaptive-snowsampler"> adaptive-snowsampler</a> package. | ||
</description> | ||
|
||
<maintainer email="[email protected]">Jaeyoung Lim</maintainer> | ||
<author email="[email protected]">Claudio Chies</author> | ||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>message_generation</build_depend> | ||
<exec_depend>message_runtime</exec_depend> | ||
<depend>std_msgs</depend> | ||
<!-- XXX needed for users of mavlink_convert.h | ||
<build_export_depend>libmavconn</build_export_depend> | ||
--> | ||
|
||
<export> | ||
<architecture_independent/> | ||
</export> | ||
</package> |