Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic_graph_bridge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
dynamic_graph_bridge
Commits
9f7f9f62
Commit
9f7f9f62
authored
9 years ago
by
Olivier Stasse
Browse files
Options
Downloads
Patches
Plain Diff
[ros] Add srv install + messages generations for C++ and python.
parent
f042f28b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-2
9 additions, 2 deletions
CMakeLists.txt
with
9 additions
and
2 deletions
CMakeLists.txt
+
9
−
2
View file @
9f7f9f62
...
...
@@ -25,8 +25,6 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs message_generation
find_package
(
realtime_tools
)
find_package
(
Boost REQUIRED COMPONENTS program_options
)
catkin_package
(
CATKIN_DEPENDS message_runtime
)
## LAAS cmake submodule part
set
(
PROJECT_DESCRIPTION
"Dynamic graph bridge library"
)
...
...
@@ -154,6 +152,11 @@ target_link_libraries(geometric_simu ros_bridge ${Boost_LIBRARIES} dl)
add_subdirectory
(
src
)
# Deal with the ROS part.
add_service_files
(
FILES RunPythonFile.srv
)
generate_messages
(
DEPENDENCIES std_msgs
)
catkin_package
(
CATKIN_DEPENDS message_runtime
)
#install ros executables
install
(
PROGRAMS
${
CMAKE_SOURCE_DIR
}
/scripts/robot_pose_publisher
...
...
@@ -164,5 +167,9 @@ install(PROGRAMS
message
(
cmake_install_bindir
" is
${
CMAKE_INSTALL_BINDIR
}
"
)
install
(
TARGETS geometric_simu DESTINATION
${
CATKIN_PACKAGE_SHARE_DESTINATION
}
)
install
(
FILES manifest.xml DESTINATION
${
CMAKE_INSTALL_PREFIX
}
/share/
${
PROJECT_NAME
}
/
)
# Service file.
install
(
FILES ./srv/RunPythonFile.srv DESTINATION
${
CMAKE_INSTALL_PREFIX
}
/share/
${
PROJECT_NAME
}
/srv
)
SETUP_PROJECT_FINALIZE
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment