Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Commit

Permalink
Merge 08632d3 into 51a55f0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadelprete committed Jun 6, 2014
2 parents 51a55f0 + 08632d3 commit b0a5676
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,26 @@ FOREACH(lib ${libs})
)
ENDFOREACH(lib)

# DelPrete: add main library
SET(sources contact-selecter.cpp feature-projected-line.cpp solver-dyn-reduced.cpp
stack-template.t.cpp task-dyn-limits.cpp task-inequality.cpp
zmp-estimator.cpp controller-pd.cpp pseudo-robot-dynamic.cpp
solver-kine.cpp task-dyn-inequality.cpp task-dyn-passing-point.cpp
task-joint-limits.cpp dynamic-integrator.cpp robot-dyn-simu.cpp
solver-op-space.cpp task-dyn-joint-limits.cpp task-dyn-pd.cpp
task-weight.cpp )
SET(LIBRARY_NAME ${PROJECT_NAME})
ADD_LIBRARY(${LIBRARY_NAME} SHARED ${headers} ${sources})
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} sot-core)
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} dynamic-graph)
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} soth)
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} jrl-mal)
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} sot-core)
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} dynamic-graph)
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} soth)
INSTALL(TARGETS ${LIBRARY_NAME} DESTINATION ${CMAKE_INSTALL_LIBDIR})
# headers are already installed

# Install empty __init__.py files in intermediate directories.
INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/dynamic_graph/sot/dyninv/__init__.py
Expand Down
1 change: 1 addition & 0 deletions src/stack-template.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <dynamic-graph/pool.h>
#include <sot/core/debug.hh>
#include <sot/core/task-abstract.hh>
#include <sot-dyninv/stack-template.h>

namespace dynamicgraph
{
Expand Down

0 comments on commit b0a5676

Please sign in to comment.