You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.3 KiB

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