1*bf2c3715SXin Li# -*- cmake -*- 2*bf2c3715SXin Li# 3*bf2c3715SXin Li# Eigen3Config.cmake(.in) 4*bf2c3715SXin Li 5*bf2c3715SXin Li# Use the following variables to compile and link against Eigen: 6*bf2c3715SXin Li# EIGEN3_FOUND - True if Eigen was found on your system 7*bf2c3715SXin Li# EIGEN3_USE_FILE - The file making Eigen usable 8*bf2c3715SXin Li# EIGEN3_DEFINITIONS - Definitions needed to build with Eigen 9*bf2c3715SXin Li# EIGEN3_INCLUDE_DIR - Directory where signature_of_eigen3_matrix_library can be found 10*bf2c3715SXin Li# EIGEN3_INCLUDE_DIRS - List of directories of Eigen and it's dependencies 11*bf2c3715SXin Li# EIGEN3_ROOT_DIR - The base directory of Eigen 12*bf2c3715SXin Li# EIGEN3_VERSION_STRING - A human-readable string containing the version 13*bf2c3715SXin Li# EIGEN3_VERSION_MAJOR - The major version of Eigen 14*bf2c3715SXin Li# EIGEN3_VERSION_MINOR - The minor version of Eigen 15*bf2c3715SXin Li# EIGEN3_VERSION_PATCH - The patch version of Eigen 16*bf2c3715SXin Li 17*bf2c3715SXin Li@PACKAGE_INIT@ 18*bf2c3715SXin Li 19*bf2c3715SXin Liset ( EIGEN3_FOUND 1 ) 20*bf2c3715SXin Liset ( EIGEN3_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseEigen3.cmake" ) 21*bf2c3715SXin Li 22*bf2c3715SXin Liset ( EIGEN3_DEFINITIONS "@EIGEN_DEFINITIONS@" ) 23*bf2c3715SXin Liset ( EIGEN3_INCLUDE_DIR "@PACKAGE_EIGEN_INCLUDE_DIR@" ) 24*bf2c3715SXin Liset ( EIGEN3_INCLUDE_DIRS "@PACKAGE_EIGEN_INCLUDE_DIR@" ) 25*bf2c3715SXin Liset ( EIGEN3_ROOT_DIR "@PACKAGE_EIGEN_ROOT_DIR@" ) 26*bf2c3715SXin Li 27*bf2c3715SXin Liset ( EIGEN3_VERSION_STRING "@EIGEN_VERSION_STRING@" ) 28*bf2c3715SXin Liset ( EIGEN3_VERSION_MAJOR "@EIGEN_VERSION_MAJOR@" ) 29*bf2c3715SXin Liset ( EIGEN3_VERSION_MINOR "@EIGEN_VERSION_MINOR@" ) 30*bf2c3715SXin Liset ( EIGEN3_VERSION_PATCH "@EIGEN_VERSION_PATCH@" ) 31