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
9089b48b
Commit
9089b48b
authored
1 year ago
by
Olivier Stasse
Browse files
Options
Downloads
Patches
Plain Diff
Add python bindings for the test impl_test_sot_mock_device
parent
9d328dee
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
tests/CMakeLists.txt
+27
-2
27 additions, 2 deletions
tests/CMakeLists.txt
tests/impl_test_sot_mock_device-python-module-py.cc
+20
-0
20 additions, 0 deletions
tests/impl_test_sot_mock_device-python-module-py.cc
with
47 additions
and
2 deletions
tests/CMakeLists.txt
+
27
−
2
View file @
9089b48b
...
@@ -10,9 +10,34 @@ if(BUILD_TESTING)
...
@@ -10,9 +10,34 @@ if(BUILD_TESTING)
find_package
(
launch_testing_ament_cmake
)
find_package
(
launch_testing_ament_cmake
)
ament_lint_auto_find_test_dependencies
()
ament_lint_auto_find_test_dependencies
()
# Library for sot_mock_device
add_library
(
impl_test_sot_mock_device SHARED impl_test_sot_mock_device.cpp
)
set_target_properties
(
impl_test_sot_mock_device PROPERTIES INSTALL_RPATH
$ORIGIN
)
# target_include_directories(impl_test_sot_mock_device PUBLIC include)
target_link_libraries
(
impl_test_sot_mock_device PUBLIC sot-core::sot-core
dynamic-graph-python::dynamic-graph-python
)
install
(
TARGETS impl_test_sot_mock_device
EXPORT
${
TARGETS_EXPORT_NAME
}
DESTINATION
${
DYNAMIC_GRAPH_PLUGINDIR
}
)
file
(
MAKE_DIRECTORY
${
PROJECT_BINARY_DIR
}
/tests/dynamic_graph/ros/impl_test_sot_mock_device
)
dynamic_graph_python_module
(
"
${
PYTHON_DIR
}
/ros/impl_test_sot_mock_device"
impl_test_sot_mock_device
dynamic_graph_bridge-impl_test_sot_mock_device-wrap SOURCE_PYTHON_MODULE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/impl_test_sot_mock_device-python-module-py.cc"
)
install
(
TARGETS
${
plugin_library_name
}
EXPORT
${
TARGETS_EXPORT_NAME
}
DESTINATION
${
DYNAMIC_GRAPH_PLUGINDIR
}
)
# Library for sot_external_interface
# Library for sot_external_interface
add_library
(
impl_test_library SHARED impl_test_sot_external_interface.cpp
add_library
(
impl_test_library SHARED impl_test_sot_external_interface.cpp
)
impl_test_sot_mock_device.cpp
)
target_include_directories
(
impl_test_library PUBLIC include
)
target_include_directories
(
impl_test_library PUBLIC include
)
target_link_libraries
(
impl_test_library PUBLIC sot-core::sot-core
)
target_link_libraries
(
impl_test_library PUBLIC sot-core::sot-core
)
...
...
This diff is collapsed.
Click to expand it.
tests/impl_test_sot_mock_device-python-module-py.cc
0 → 100644
+
20
−
0
View file @
9089b48b
/*
* Copyright 2023, LAAS, CNRS
*
* Author:Olivier Stasse
*
* This file is part of dynamic_graph_bridge.
* This file is under the APACHE license 2.0
*
*/
#include
<dynamic-graph/python/module.hh>
#include
"impl_test_sot_mock_device.hh"
namespace
dg
=
dynamicgraph
;
BOOST_PYTHON_MODULE
(
wrap
)
{
bp
::
import
(
"dynmic_graph.sot.core.wrap"
);
dg
::
python
::
exposeEntity
<
ImplTestSotMockDevice
,
bp
::
bases
<
dg
::
sot
::
Device
>
>
();
}
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