Skip to content

Commit 4867e97

Browse files
author
Rohan Budhiraja
committed
[cmake] remove rpath from shared library
1 parent a621254 commit 4867e97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ ADD_LIBRARY(${LIBRARY_NAME}
159159
160160
SET_TARGET_PROPERTIES(${LIBRARY_NAME}
161161
PROPERTIES
162-
SOVERSION ${PROJECT_VERSION}
163-
INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
162+
SOVERSION ${PROJECT_VERSION}}
164163
165164
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} dynamic-graph)
166165
PKG_CONFIG_USE_DEPENDENCY(${LIBRARY_NAME} dynamic-graph-python)

src/tools/device.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ void Device::integrateRollPitchYaw(Vector& state, const Vector& control,
4545
double dt)
4646
{
4747
Eigen::Vector3d omega;
48+
//TODO: EIGEN OPTIMISE
4849
// Translation part
4950
for (unsigned int i=0; i<3; i++) {
5051
state(i) += control(i)*dt;

0 commit comments

Comments
 (0)