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

Add missing Python example for testing #2528

Open
wants to merge 6 commits into
base: devel
Choose a base branch
from
Open
Changes from 2 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
9 changes: 4 additions & 5 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if(BUILD_PYTHON_INTERFACE)

if(BUILD_WITH_COLLISION_SUPPORT)
list(APPEND ${PROJECT_NAME}_PYTHON_EXAMPLES sample-model-viewer display-shapes
simulation-pendulum)
simulation-pendulum simulation-closed-kinematic-chains)
if(BUILD_WITH_URDF_SUPPORT)
list(
APPEND
Expand All @@ -98,10 +98,9 @@ if(BUILD_PYTHON_INTERFACE)
collisions
collision-with-point-clouds
append-urdf-model-with-another-model
simulation-contact-dynamics)
if(PYTHON_VERSION_MAJOR EQUAL 3)
list(APPEND ${PROJECT_NAME}_PYTHON_EXAMPLES static-contact-dynamics)
endif()
simulation-contact-dynamics
talos-simulation
static-contact-dynamics)
endif()
endif()

Expand Down
Loading