forked from robotics-in-concert/rocon_demo_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
48 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,23 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(simple_delivery_msgs) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
message_generation std_msgs actionlib_msgs | ||
) | ||
|
||
## Generate actions in the 'action' folder | ||
add_action_files( | ||
DIRECTORY action | ||
FILES | ||
DeliverOrder.action | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES | ||
std_msgs # Or other packages containing msgs | ||
actionlib_msgs | ||
) | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS message_runtime std_msgs actionlib_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,6 @@ | ||
string location | ||
--- | ||
bool success | ||
string message | ||
--- | ||
string status |
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,19 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>simple_delivery_msgs</name> | ||
<version>0.0.0</version> | ||
<description>The simple_delivery_msgs package</description> | ||
|
||
<maintainer email="[email protected]">Jihoon Lee</maintainer> | ||
<author email="[email protected]">Jihoon Lee</author> | ||
<license>BSD</license> | ||
<!-- <url type="website">http://wiki.ros.org/simple_delivery_msgs</url> --> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>message_generation</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<build_depend>actionlib_msgs</build_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>actionlib_msgs</run_depend> | ||
</package> |