Skip to content
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
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ option(VAMP_FORCE_CLANG "Force the use of Clang." OFF)
option(VAMP_BUILD_PYTHON_BINDINGS "Build VAMP Python bindings" ON)
option(VAMP_INSTALL_CPP_LIBRARY "Install VAMP C++ library (disable for Python wheel builds)" ON)

option(VAMP_BUILD_CPP_DEMO "Build VAMP C++ Demo Scripts" OFF)
option(VAMP_BUILD_CPP_DEMO "Build VAMP C++ Demo Scripts" ON)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be off by default for python wheels

option(VAMP_BUILD_OMPL_DEMO "Build VAMP C++ OMPL Integration Demo Scripts" OFF)
option(VAMP_OMPL_PATH "Search Path for OMPL Installation - Only Needed for Demo Script" "")


if(VAMP_FORCE_CLANG)
find_program(CLANG "clang")
find_program(CLANGPP "clang++")
Expand Down
2 changes: 2 additions & 0 deletions cmake/Python.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ if(VAMP_BUILD_PYTHON_BINDINGS)
panda
fetch
baxter
bimanualpanda
)

list(APPEND VAMP_ROBOT_STRUCTS
Expand All @@ -29,6 +30,7 @@ if(VAMP_BUILD_PYTHON_BINDINGS)
Panda
Fetch
Baxter
BimanualPanda
)
endif()

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ cmake.build-type = "Release"

[tool.scikit-build.cmake.define]
VAMP_LTO = "OFF"
VAMP_ROBOT_MODULES="sphere;ur5;panda;fetch;baxter"
VAMP_ROBOT_STRUCTS="Sphere;UR5;Panda;Fetch;Baxter"
VAMP_ROBOT_MODULES="sphere;ur5;panda;fetch;baxter;bimanualpanda"
VAMP_ROBOT_STRUCTS="Sphere;UR5;Panda;Fetch;Baxter;BimanualPanda"
Loading