Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pierre Fernbach
hpp-rbprm
Commits
1b6941b2
Unverified
Commit
1b6941b2
authored
Feb 28, 2019
by
Guilhem Saurel
Committed by
GitHub
Feb 28, 2019
Browse files
Merge pull request #30 from nim65s/devel
Maintenance
parents
f504d0d6
be46cb4d
Changes
6
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
1b6941b2
include
:
http://rainboard.laas.fr/project/hpp-rbprm/.gitlab-ci.yml
CMakeLists.txt
View file @
1b6941b2
...
...
@@ -24,15 +24,15 @@ INCLUDE(cmake/boost.cmake)
INCLUDE
(
cmake/hpp.cmake
)
INCLUDE
(
cmake/test.cmake
)
SET
(
PROJECT_ORG humanoid-path-planner
)
SET
(
PROJECT_NAME hpp-rbprm
)
SET
(
PROJECT_DESCRIPTION
"Implementation of RB-PRM planner using hpp."
)
SET
(
PROJECT_URL
"https://github.com/
${
PROJECT_ORG
}
/
${
PROJECT_NAME
}
"
)
SETUP_HPP_PROJECT
()
SETUP_PROJECT
()
SET
(
CMAKE_MODULE_PATH
"
${
PROJECT_SOURCE_DIR
}
/cmake/find-external/CDD"
)
FIND_PACKAGE
(
CDD REQUIRED
)
ADD_REQUIRED_DEPENDENCY
(
"hpp-core >= 4.2"
)
ADD_REQUIRED_DEPENDENCY
(
"hpp-util >= 3"
)
...
...
README.md
View file @
1b6941b2
# Humanoid Path Planner - RBPRM module
[

](https://gepgitlab.laas.fr/humanoid-path-planner/hpp-rbprm/commits/master)
[

](http://projects.laas.fr/gepetto/doc/humanoid-path-planner/hpp-rbprm/master/coverage/)
Copyright 2015 LAAS-CNRS
Author: Steve Tonneau
...
...
cmake
@
a4e20624
Compare
c8da73d0
...
a4e20624
Subproject commit
c8da73d0b0aa607e335b49bb456d4d5edf90f180
Subproject commit
a4e206247098888ee3eb89917b27ae6b382d9cf8
cmake2/FindCDD.cmake
deleted
100644 → 0
View file @
f504d0d6
# - Try to find libcdd
# Once done this will define
# CDD_FOUND - System has CDD
# CDD_INCLUDE_DIRS - The CDD include directories
# CDD_LIBRARIES - The libraries needed to use CDD
# CDD_DEFINITIONS - Compiler switches required for using CDD
find_path
(
CDD_INCLUDE_DIR cdd/cdd.h
HINTS
${
CDD_INCLUDEDIR
}
/usr/include
PATH_SUFFIXES CDD
)
find_library
(
CDD_LIBRARY NAMES libcdd.so
HINTS
${
CDD_LIBDIR
}
${
CDD_LIBRARY_DIRS
}
/usr/lib/libcdd.so
)
set
(
CDD_LIBRARIES
${
CDD_LIBRARY
}
)
set
(
CDD_INCLUDE_DIRS
${
CDD_INCLUDE_DIR
}
)
include
(
FindPackageHandleStandardArgs
)
# handle the QUIETLY and REQUIRED arguments and set CDD_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args
(
CDD DEFAULT_MSG
CDD_LIBRARY CDD_INCLUDE_DIR
)
mark_as_advanced
(
CDD_INCLUDE_DIR CDD_LIBRARY
)
src/CMakeLists.txt
View file @
1b6941b2
...
...
@@ -76,6 +76,7 @@ ADD_LIBRARY(${LIBRARY_NAME}
)
TARGET_LINK_LIBRARIES
(
${
LIBRARY_NAME
}
hpp-centroidal-dynamics hpp-bezier-com-traj
)
TARGET_INCLUDE_DIRECTORIES
(
${
LIBRARY_NAME
}
PUBLIC
${
CDD_INCLUDE_DIRS
}
)
PKG_CONFIG_USE_DEPENDENCY
(
${
LIBRARY_NAME
}
hpp-core
)
PKG_CONFIG_USE_DEPENDENCY
(
${
LIBRARY_NAME
}
hpp-util
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment