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
Guilhem Saurel
dynamic_graph_bridge
Commits
9390116f
Commit
9390116f
authored
4 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
update for dynamic-graph-python v4
parent
413541e0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+3
-2
3 additions, 2 deletions
CMakeLists.txt
src/CMakeLists.txt
+2
-2
2 additions, 2 deletions
src/CMakeLists.txt
with
5 additions
and
4 deletions
CMakeLists.txt
+
3
−
2
View file @
9390116f
...
...
@@ -35,18 +35,19 @@ PROJECT(${PROJECT_NAME} ${PROJECT_ARGS})
# Project dependencies
SET
(
CATKIN_REQUIRED_COMPONENTS roscpp std_msgs message_generation std_srvs geometry_msgs sensor_msgs tf2_ros
realtime_tools
)
FIND_PACKAGE
(
Boost REQUIRED COMPONENTS program_options
)
IF
(
BUILD_PYTHON_INTERFACE
)
FINDPYTHON
()
SEARCH_FOR_BOOST_PYTHON
()
STRING
(
REGEX REPLACE
"-"
"_"
PY_NAME
${
PROJECT_NAME
}
)
ADD_PROJECT_DEPENDENCY
(
dynamic-graph-python REQUIRED
ADD_PROJECT_DEPENDENCY
(
dynamic-graph-python
4.0.0
REQUIRED
PKG_CONFIG_REQUIRES dynamic-graph-python
)
SET
(
CATKIN_REQUIRED_COMPONENTS
${
CATKIN_REQUIRED_COMPONENTS
}
rospy
)
ENDIF
(
BUILD_PYTHON_INTERFACE
)
find_package
(
catkin REQUIRED COMPONENTS
${
CATKIN_REQUIRED_COMPONENTS
}
)
SEARCH_FOR_BOOST
()
ADD_PROJECT_DEPENDENCY
(
sot-core REQUIRED PKG_CONFIG_REQUIRES sot-core
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
2
−
2
View file @
9390116f
...
...
@@ -50,13 +50,13 @@ ENDIF(BUILD_PYTHON_INTERFACE)
# Stand alone embedded intepreter with a robot controller.
add_executable
(
geometric_simu geometric_simu.cpp sot_loader.cpp sot_loader_basic.cpp
)
target_link_libraries
(
geometric_simu
${
Boost
_LIBRARIES
}
${
CMAKE_DL_LIBS
}
${
catkin_LIBRARIES
}
ros_bridge
)
target_link_libraries
(
geometric_simu Boost
::program_options
${
CMAKE_DL_LIBS
}
${
catkin_LIBRARIES
}
ros_bridge
)
pkg_config_use_dependency
(
geometric_simu dynamic_graph_bridge_msgs
)
install
(
TARGETS geometric_simu
DESTINATION lib/
${
PROJECT_NAME
}
)
# Sot loader library
add_library
(
sot_loader sot_loader.cpp sot_loader_basic.cpp
)
target_link_libraries
(
sot_loader
${
Boost
_LIBRARIES
}
${
catkin_LIBRARIES
}
ros_bridge
)
target_link_libraries
(
sot_loader Boost
::program_options
${
catkin_LIBRARIES
}
ros_bridge
)
pkg_config_use_dependency
(
sot_loader dynamic_graph_bridge_msgs
)
install
(
TARGETS sot_loader EXPORT
${
TARGETS_EXPORT_NAME
}
DESTINATION lib
)
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