Skip to content

Commit

Permalink
Merge 41e86e4 into 74a526f
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBowman committed Jun 13, 2018
2 parents 74a526f + 41e86e4 commit a7eb704
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions doc/release/v3_0_1.md
Expand Up @@ -16,6 +16,11 @@ Bug Fixes

### Libraries

#### YARP_math

* Fixed a regression in the build system that prevented YARP from being
compiled if Eigen3 was available.

#### YARP_pcl

* Fixed missing isDense parmeter.
Expand Down
7 changes: 5 additions & 2 deletions src/libYARP_math/CMakeLists.txt
Expand Up @@ -5,11 +5,14 @@
# This software may be modified and distributed under the terms of the
# BSD-3-Clause license. See the accompanying LICENSE file for details.

set(YARP_HAS_MATH_LIB FALSE PARENT_SCOPE)
set(YARP_HAS_MATH_LIB FALSE)
if (CREATE_LIB_MATH)
set(YARP_HAS_MATH_LIB TRUE PARENT_SCOPE)
set(YARP_HAS_MATH_LIB TRUE)
endif()

# Export this variable to the caller
set(YARP_HAS_MATH_LIB ${YARP_HAS_MATH_LIB} PARENT_SCOPE)

if (YARP_HAS_MATH_LIB)

project(YARP_math)
Expand Down

0 comments on commit a7eb704

Please sign in to comment.