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.5 KiB

  1. # -*- cmake -*-
  2. #
  3. # Eigen3Config.cmake(.in)
  4. # Use the following variables to compile and link against Eigen:
  5. # STORMEIGEN3_FOUND - True if Eigen was found on your system
  6. # STORMEIGEN3_USE_FILE - The file making Eigen usable
  7. # STORMEIGEN3_DEFINITIONS - Definitions needed to build with Eigen
  8. # STORMEIGEN3_INCLUDE_DIR - Directory where signature_of_eigen3_matrix_library can be found
  9. # STORMEIGEN3_INCLUDE_DIRS - List of directories of Eigen and it's dependencies
  10. # STORMEIGEN3_ROOT_DIR - The base directory of Eigen
  11. # STORMEIGEN3_VERSION_STRING - A human-readable string containing the version
  12. # STORMEIGEN3_VERSION_MAJOR - The major version of Eigen
  13. # STORMEIGEN3_VERSION_MINOR - The minor version of Eigen
  14. # STORMEIGEN3_VERSION_PATCH - The patch version of Eigen
  15. set ( STORMEIGEN3_FOUND 1 )
  16. set ( STORMEIGEN3_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseEigen3.cmake" )
  17. set ( STORMEIGEN3_DEFINITIONS "@STORMEIGEN_DEFINITIONS@" )
  18. set ( STORMEIGEN3_INCLUDE_DIR "@STORMEIGEN_INCLUDE_DIR@" )
  19. set ( STORMEIGEN3_INCLUDE_DIRS "@STORMEIGEN_INCLUDE_DIRS@" )
  20. set ( STORMEIGEN3_ROOT_DIR "@STORMEIGEN_ROOT_DIR@" )
  21. set ( STORMEIGEN3_VERSION_STRING "@STORMEIGEN_VERSION_STRING@" )
  22. set ( STORMEIGEN3_VERSION_MAJOR "@STORMEIGEN_VERSION_MAJOR@" )
  23. set ( STORMEIGEN3_VERSION_MINOR "@STORMEIGEN_VERSION_MINOR@" )
  24. set ( STORMEIGEN3_VERSION_PATCH "@STORMEIGEN_VERSION_PATCH@" )