Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sp18021 feat ros coding style #53

Open
wants to merge 4 commits into
base: lunar-devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ find_package(catkin REQUIRED
geometry_msgs
nav_msgs
roscpp
roslint
sensor_msgs
std_msgs
std_srvs
tf
)

roslint_cpp()
roslint_add_test()

find_package(Boost REQUIRED COMPONENTS system thread)

find_package(stage REQUIRED)
Expand All @@ -22,7 +26,13 @@ include_directories(
${STAGE_INCLUDE_DIRS}
)

catkin_package()
catkin_package(
CATKIN_DEPENDS
geometry_msgs
nav_msgs
sensor_msgs
std_msgs
)

# Declare a cpp executable
add_executable(stageros src/stageros.cpp)
Expand Down
34 changes: 13 additions & 21 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>stage_ros</name>
<version>1.8.0</version>
<description>This package provides ROS specific hooks for stage</description>
<description>ROS specific hooks for stage</description>

<maintainer email="[email protected]">William Woodall</maintainer>

Expand All @@ -15,25 +15,17 @@
<author email="[email protected]">Brian Gerky</author>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>roslint</build_depend>

<build_depend>boost</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>nav_msgs</build_depend>
<build_depend>roscpp</build_depend>
<build_depend>rostest</build_depend>
<build_depend>sensor_msgs</build_depend>
<build_depend>stage</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>std_srvs</build_depend>
<build_depend>tf</build_depend>
<depend>boost</depend>
<depend>geometry_msgs</depend>
<depend>nav_msgs</depend>
<depend>roscpp</depend>
<depend>sensor_msgs</depend>
<depend>stage</depend>
<depend>std_msgs</depend>
<depend>std_srvs</depend>
<depend>tf</depend>

<run_depend>boost</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>nav_msgs</run_depend>
<run_depend>roscpp</run_depend>
<run_depend>sensor_msgs</run_depend>
<run_depend>stage</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>std_srvs</run_depend>
<run_depend>tf</run_depend>
<test_depend>rostest</test_depend>
</package>
Loading