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
Stack Of Tasks
pinocchio
Commits
ea873e7a
Verified
Commit
ea873e7a
authored
Apr 09, 2020
by
Justin Carpentier
Browse files
cmake: minor fix
parent
4b1e7111
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
ea873e7a
...
...
@@ -45,7 +45,7 @@ ENDIF(WIN32)
# --- OPTIONS ----------------------------------------
OPTION
(
BUILD_BENCHMARK
"Build the benchmarks"
OFF
)
OPTION
(
BUILD_UTILS
"Build the utils"
OFF
)
OPTION
(
BUILD_PYTHON_INTERFACE
"Build the
p
ython binding"
ON
)
OPTION
(
BUILD_PYTHON_INTERFACE
"Build the
P
ython binding"
ON
)
OPTION
(
BUILD_WITH_COMMIT_VERSION
"Build libraries by setting specific commit version"
OFF
)
IF
(
DEFINED BUILD_UNIT_TESTS
)
...
...
@@ -59,10 +59,10 @@ OPTION(BUILD_ADVANCED_TESTING "Build the advanced tests (multiprecision, etc.) o
# --- OPTIONAL DEPENDENCIES -------------------------
OPTION
(
BUILD_WITH_URDF_SUPPORT
"Build the library with the URDF format support"
ON
)
OPTION
(
BUILD_WITH_COLLISION_SUPPORT
"Build the library with the
C
ollision support (required HPP-FCL)"
OFF
)
OPTION
(
BUILD_WITH_AUTODIFF_SUPPORT
"Build the library with the
A
utomatic
D
ifferentiation support"
OFF
)
OPTION
(
BUILD_WITH_CASADI_SUPPORT
"Build the library with the
CASADI
support"
OFF
)
OPTION
(
BUILD_WITH_CODEGEN_SUPPORT
"Build the library with the
C
ode
G
eneration
support
"
OFF
)
OPTION
(
BUILD_WITH_COLLISION_SUPPORT
"Build the library with the
c
ollision support (required HPP-FCL)"
OFF
)
OPTION
(
BUILD_WITH_AUTODIFF_SUPPORT
"Build the library with the
a
utomatic
d
ifferentiation support
(via CppAD)
"
OFF
)
OPTION
(
BUILD_WITH_CASADI_SUPPORT
"Build the library with the support
of CASADI
"
OFF
)
OPTION
(
BUILD_WITH_CODEGEN_SUPPORT
"Build the library with the
support of c
ode
g
eneration
(via CppADCodeGen)
"
OFF
)
OPTION
(
INITIALIZE_WITH_NAN
"Initialize Eigen entries with NaN"
OFF
)
...
...
@@ -159,9 +159,9 @@ IF(BUILD_WITH_HPP_FCL_SUPPORT)
ERROR_QUIET
)
IF
(
_hpp_fcl_python_bindings_not_found EQUAL 0
)
SET
(
BUILD_WITH_HPP_FCL_PYTHON_BINDINGS TRUE
)
MESSAGE
(
STATUS
"Found hpp-fcl
p
ython bindings."
)
MESSAGE
(
STATUS
"Found hpp-fcl
P
ython bindings."
)
ELSE
()
MESSAGE
(
STATUS
"
Did not find
hpp-fcl
p
ython bindings."
)
MESSAGE
(
STATUS
"hpp-fcl
P
ython bindings
NOT found
."
)
ENDIF
()
UNSET
(
_hpp_fcl_python_bindings_not_found
)
ENDIF
(
BUILD_PYTHON_INTERFACE
)
...
...
Write
Preview
Markdown
is supported
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