Skip to content

Commit

Permalink
fix FindEigen3.cmake: proper evaluation if $EIGEN_ROOT is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
bkueng committed Feb 21, 2017
1 parent 617f799 commit 03b2f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/cmake-modules/FindEigen3.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if (EIGEN3_INCLUDE_DIR)
else (EIGEN3_INCLUDE_DIR)


if (${EIGEN_ROOT} STREQUAL "" )
if ("${EIGEN_ROOT}" STREQUAL "" )
message(ERROR " Please set your EIGEN_ROOT install location")
endif()

Expand Down

0 comments on commit 03b2f67

Please sign in to comment.