File tree 2 files changed +7
-2
lines changed
bindings/python/crocoddyl
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
7
7
## [ Unreleased]
8
8
9
+ * Fixed error message building crocoddyl.launch crocoddyl.rviz as Python files in https://github.com/loco-3d/crocoddyl/pull/1369
9
10
* Created Python bindings for (diff)-action getters in https://github.com/loco-3d/crocoddyl/pull/1362
10
11
* Enabled casting and multi-scalar Python bindings in https://github.com/loco-3d/crocoddyl/pull/1346
11
12
* Compute LU decomposition using permutationP in https://github.com/loco-3d/crocoddyl/pull/1351
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ file(GLOB_RECURSE ${PROJECT_NAME}_PYTHON_BINDINGS_HEADERS
3
3
file (GLOB_RECURSE ${PROJECT_NAME} _PYTHON_BINDINGS_SOURCES
4
4
${CMAKE_CURRENT_SOURCE_DIR} /*.cpp)
5
5
6
- set (${PROJECT_NAME} _PYTHON_BINDINGS_FILES __init__.py deprecated.py
7
- crocoddyl.launch crocoddyl.rviz)
6
+ set (${PROJECT_NAME} _PYTHON_BINDINGS_FILES __init__.py deprecated.py)
8
7
9
8
set (PYWRAP "${PROJECT_NAME} _pywrap" )
10
9
set (${PYWRAP} _INSTALL_DIR ${PYTHON_SITELIB} /${PROJECT_NAME} )
@@ -46,6 +45,11 @@ foreach(python ${${PROJECT_NAME}_PYTHON_BINDINGS_FILES})
46
45
FILES "${${PROJECT_NAME} _SOURCE_DIR}/bindings/python/crocoddyl/${python} "
47
46
DESTINATION ${${PYWRAP} _INSTALL_DIR})
48
47
endforeach (python ${${PROJECT_NAME} _PYTHON_BINDINGS_FILES})
48
+ install (
49
+ FILES
50
+ "${${PROJECT_NAME} _SOURCE_DIR}/bindings/python/crocoddyl/crocoddyl.launch"
51
+ "${${PROJECT_NAME} _SOURCE_DIR}/bindings/python/crocoddyl/crocoddyl.rviz"
52
+ DESTINATION ${${PYWRAP} _INSTALL_DIR})
49
53
50
54
set (${PROJECT_NAME} _BINDINGS_UTILS_PYTHON_FILES __init__.py pendulum.py
51
55
biped.py quadruped.py)
You can’t perform that action at this time.
0 commit comments