Warning, /frameworks/kdelibs4support/cmake/modules/FindEigen.cmake is written in an unsupported language. File is not indexed.

0001 # Note that Eigen1 is deprecated in favor of Eigen2. So this file is deprecated
0002 # in favor of FindEigen2.cmake. It is kept only for compatibility.
0003 #
0004 # - Try to find Eigen1 library
0005 # Once done this will define
0006 #
0007 #  EIGEN_FOUND - system has eigen lib
0008 #  EIGEN_INCLUDE_DIR - the eigen include directory
0009 
0010 # Copyright (c) 2006, 2007 Montel Laurent, <montel@kde.org>
0011 # Redistribution and use is allowed according to the terms of the BSD license.
0012 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0013 
0014 find_path(EIGEN_INCLUDE_DIR NAMES eigen/matrix.h
0015      PATHS
0016      ${INCLUDE_INSTALL_DIR}
0017    )
0018 
0019 include(FindPackageHandleStandardArgs)
0020 find_package_handle_standard_args(Eigen DEFAULT_MSG EIGEN_INCLUDE_DIR )
0021 
0022 mark_as_advanced(EIGEN_INCLUDE_DIR)
0023 
0024