blob: 847239e06b0e4b11a6df8fcc372d1a8d920b667e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# - Try to find eigen lib
# Once done this will define
#
# EIGEN_FOUND - system has eigen lib
# EIGEN_INCLUDE_DIR - the eigen include directory
#
# Copyright (c) 2006, Montel Laurent, <montel@kde.org>
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
if (EIGEN_INCLUDE_DIR)
# in cache already
set(EIGEN_FOUND TRUE)
else (EIGEN_INCLUDE_DIR)
find_path(EIGEN_INCLUDE_DIR NAMES eigen/matrix.h
PATHS
${INCLUDE_INSTALL_DIR}
)
if(EIGEN_INCLUDE_DIR)
set(EIGEN_FOUND TRUE)
endif(EIGEN_INCLUDE_DIR)
if(EIGEN_FOUND)
if(NOT Eigen_FIND_QUIETLY)
message(STATUS "Found Eigen: ${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)
endif(EIGEN_INCLUDE_DIR)
|