-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added switches for glog, gflags, boost dependency
added Eigen support
- Loading branch information
Showing
43 changed files
with
1,082 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
SET(EIGEN_INCLUDE_SEARCH_PATHS | ||
/usr/include | ||
/usr/include/eigen3 | ||
/usr/local/include | ||
/usr/local/include/eigen3 | ||
$ENV{EIGEN_HOME} | ||
) | ||
|
||
FIND_PATH(EIGEN_INCLUDE_DIR NAMES Eigen/Dense PATHS ${EIGEN_INCLUDE_SEARCH_PATHS}) | ||
|
||
SET(EIGEN_FOUND ON) | ||
|
||
# Check include files | ||
IF(NOT EIGEN_INCLUDE_DIR) | ||
SET(EIGEN_FOUND OFF) | ||
MESSAGE(STATUS "Could not find EIGEN include. Turning EIGEN_FOUND off") | ||
ENDIF() | ||
|
||
IF (EIGEN_FOUND) | ||
IF (NOT EIGEN_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found EIGEN include: ${EIGEN_INCLUDE_DIR}") | ||
ENDIF (NOT EIGEN_FIND_QUIETLY) | ||
ELSE (EIGEN_FOUND) | ||
IF (EIGEN_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find EIGEN") | ||
ENDIF (EIGEN_FIND_REQUIRED) | ||
ENDIF (EIGEN_FOUND) | ||
|
||
MARK_AS_ADVANCED( | ||
EIGEN_INCLUDE_DIR | ||
EIGEN | ||
) |
Oops, something went wrong.