# -*- cmake -*- # # Eigen3Config.cmake(.in) # Use the following variables to compile and link against Eigen: # STORMEIGEN3_FOUND - True if Eigen was found on your system # STORMEIGEN3_USE_FILE - The file making Eigen usable # STORMEIGEN3_DEFINITIONS - Definitions needed to build with Eigen # STORMEIGEN3_INCLUDE_DIR - Directory where signature_of_eigen3_matrix_library can be found # STORMEIGEN3_INCLUDE_DIRS - List of directories of Eigen and it's dependencies # STORMEIGEN3_ROOT_DIR - The base directory of Eigen # STORMEIGEN3_VERSION_STRING - A human-readable string containing the version # STORMEIGEN3_VERSION_MAJOR - The major version of Eigen # STORMEIGEN3_VERSION_MINOR - The minor version of Eigen # STORMEIGEN3_VERSION_PATCH - The patch version of Eigen set ( STORMEIGEN3_FOUND 1 ) set ( STORMEIGEN3_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseEigen3.cmake" ) set ( STORMEIGEN3_DEFINITIONS "@STORMEIGEN_DEFINITIONS@" ) set ( STORMEIGEN3_INCLUDE_DIR "@STORMEIGEN_INCLUDE_DIR@" ) set ( STORMEIGEN3_INCLUDE_DIRS "@STORMEIGEN_INCLUDE_DIRS@" ) set ( STORMEIGEN3_ROOT_DIR "@STORMEIGEN_ROOT_DIR@" ) set ( STORMEIGEN3_VERSION_STRING "@STORMEIGEN_VERSION_STRING@" ) set ( STORMEIGEN3_VERSION_MAJOR "@STORMEIGEN_VERSION_MAJOR@" ) set ( STORMEIGEN3_VERSION_MINOR "@STORMEIGEN_VERSION_MINOR@" ) set ( STORMEIGEN3_VERSION_PATCH "@STORMEIGEN_VERSION_PATCH@" )