mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
b836acb799
And other related cmake cleanup, including: - Use CMAKE_CURRENT_LIST_DIR to find UseEigen3.cmake - Use INSTALL_DIR term consistently for variable names - Drop unnecessary extra EIGEN_INCLUDE_INSTALL_DIR - Fix some paths in generated eigen3.pc and Eigen3Config.cmake files missing CMAKE_INSTALL_PREFIX - Fix pkgconfig directory choice ignored if it doesn't exist at configure time (bug #711)
29 lines
1.3 KiB
CMake
29 lines
1.3 KiB
CMake
# -*- cmake -*-
|
|
#
|
|
# Eigen3Config.cmake(.in)
|
|
|
|
# Use the following variables to compile and link against Eigen:
|
|
# EIGEN3_FOUND - True if Eigen was found on your system
|
|
# EIGEN3_USE_FILE - The file making Eigen usable
|
|
# EIGEN3_DEFINITIONS - Definitions needed to build with Eigen
|
|
# EIGEN3_INCLUDE_DIR - Directory where signature_of_eigen3_matrix_library can be found
|
|
# EIGEN3_INCLUDE_DIRS - List of directories of Eigen and it's dependencies
|
|
# EIGEN3_ROOT_DIR - The base directory of Eigen
|
|
# EIGEN3_VERSION_STRING - A human-readable string containing the version
|
|
# EIGEN3_VERSION_MAJOR - The major version of Eigen
|
|
# EIGEN3_VERSION_MINOR - The minor version of Eigen
|
|
# EIGEN3_VERSION_PATCH - The patch version of Eigen
|
|
|
|
set ( EIGEN3_FOUND 1 )
|
|
set ( EIGEN3_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseEigen3.cmake" )
|
|
|
|
set ( EIGEN3_DEFINITIONS "@EIGEN_DEFINITIONS@" )
|
|
set ( EIGEN3_INCLUDE_DIR "@EIGEN_INCLUDE_DIR@" )
|
|
set ( EIGEN3_INCLUDE_DIRS "@EIGEN_INCLUDE_DIRS@" )
|
|
set ( EIGEN3_ROOT_DIR "@EIGEN_ROOT_DIR@" )
|
|
|
|
set ( EIGEN3_VERSION_STRING "@EIGEN_VERSION_STRING@" )
|
|
set ( EIGEN3_VERSION_MAJOR "@EIGEN_VERSION_MAJOR@" )
|
|
set ( EIGEN3_VERSION_MINOR "@EIGEN_VERSION_MINOR@" )
|
|
set ( EIGEN3_VERSION_PATCH "@EIGEN_VERSION_PATCH@" )
|