Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-centroidal-dynamics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Humanoid Path Planner
hpp-centroidal-dynamics
Commits
2ded1c0a
Commit
2ded1c0a
authored
8 years ago
by
Joseph Mirabel
Committed by
Andrea Del Prete
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix FindCDD.cmake (#3)
* Fix FindCDD.cmake * Update README.md
parent
25f4c0e7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+0
-5
0 additions, 5 deletions
README.md
cmake2/FindCDD.cmake
+1
-1
1 addition, 1 deletion
cmake2/FindCDD.cmake
src/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/CMakeLists.txt
with
2 additions
and
7 deletions
README.md
+
0
−
5
View file @
2ded1c0a
...
@@ -58,11 +58,6 @@ cd $ROBUST_EQUI_LIB_DIR/build
...
@@ -58,11 +58,6 @@ cd $ROBUST_EQUI_LIB_DIR/build
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
make install
make install
```
```
Currently, CMake may have problems finding CDD.
If this is the case you can specify its path manually, for instance:
```
cmake -DCDD_LIBRARY=/usr/lib/libcdd.so -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
```
### Optional
### Optional
As an alternative to qpOases you can use
[
CLP
](
https://projects.coin-or.org/Clp
)
to solve linear programs.
As an alternative to qpOases you can use
[
CLP
](
https://projects.coin-or.org/Clp
)
to solve linear programs.
...
...
This diff is collapsed.
Click to expand it.
cmake2/FindCDD.cmake
+
1
−
1
View file @
2ded1c0a
...
@@ -10,7 +10,7 @@ find_path(CDD_INCLUDE_DIR cdd/cdd.h
...
@@ -10,7 +10,7 @@ find_path(CDD_INCLUDE_DIR cdd/cdd.h
HINTS
${
CDD_INCLUDEDIR
}
/usr/include
HINTS
${
CDD_INCLUDEDIR
}
/usr/include
PATH_SUFFIXES CDD
)
PATH_SUFFIXES CDD
)
find_library
(
CDD_LIBRARY NAMES libcdd
find_library
(
CDD_LIBRARY NAMES libcdd
.so
HINTS
${
CDD_LIBDIR
}
${
CDD_LIBRARY_DIRS
}
/usr/lib/libcdd.so
)
HINTS
${
CDD_LIBDIR
}
${
CDD_LIBRARY_DIRS
}
/usr/lib/libcdd.so
)
set
(
CDD_LIBRARIES
${
CDD_LIBRARY
}
)
set
(
CDD_LIBRARIES
${
CDD_LIBRARY
}
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
1
−
1
View file @
2ded1c0a
...
@@ -35,7 +35,7 @@ if ( MSVC )
...
@@ -35,7 +35,7 @@ if ( MSVC )
SET
(
CMAKE_DEBUG_POSTFIX d
)
SET
(
CMAKE_DEBUG_POSTFIX d
)
endif
(
MSVC
)
endif
(
MSVC
)
TARGET_LINK_LIBRARIES
(
${
LIBRARY_NAME
}
${
CDD_LIBRAR
Y
}
)
TARGET_LINK_LIBRARIES
(
${
LIBRARY_NAME
}
${
CDD_LIBRAR
IES
}
)
PKG_CONFIG_USE_DEPENDENCY
(
${
LIBRARY_NAME
}
qpOASES
)
PKG_CONFIG_USE_DEPENDENCY
(
${
LIBRARY_NAME
}
qpOASES
)
if
(
CLP_FOUND
)
if
(
CLP_FOUND
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment