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