Skip to content

Commit

Permalink
feat: packaging pcg properly
Browse files Browse the repository at this point in the history
  • Loading branch information
simojo committed Mar 10, 2024
1 parent c0fcb78 commit 087dd4f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions src/pcg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ project(pcg)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
rospy
message_generation
std_msgs
geometry_msgs
)

## System dependencies are found with CMake's conventions
Expand Down Expand Up @@ -68,6 +71,7 @@ add_service_files(
generate_messages(
DEPENDENCIES
std_msgs
geometry_msgs
)

################################################
Expand Down
8 changes: 4 additions & 4 deletions src/pcg/package.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<package format="2">
<package format="3">
<name>pcg</name>
<version>0.0.1</version>
<description>Wrapper for pcg_gazebo</description>
Expand Down Expand Up @@ -37,9 +37,9 @@
<!-- <build_depend>roscpp</build_depend> -->
<!-- <exec_depend>roscpp</exec_depend> -->
<!-- Use build_depend for packages you need at compile time: -->
<build_depend>message_generation</build_depend>
<!-- Use build_export_depend for packages you need in order to build against this package: -->
<build_export_depend>message_generation</build_export_depend>
<depend>message_generation</depend>
<depend>std_msgs</depend>
<depend>geometry_msgs</depend>
<!-- Use buildtool_depend for build tool packages: -->
<!-- <buildtool_depend>catkin</buildtool_depend> -->
<!-- Use exec_depend for packages you need at runtime: -->
Expand Down
2 changes: 1 addition & 1 deletion src/pcg/srv/GetPcgMapMetadata.srv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
string world_sdf_filepath
int8 num_free_positions
---
Point[] free_positions
geometry_msgs/Point[] free_positions

0 comments on commit 087dd4f

Please sign in to comment.