This bugzilla service is closed. All entries have been migrated to https://gitlab.com/libeigen/eigen
View | Details | Raw Unified | Return to bug 1100 | Differences between
and this patch

Collapse All | Expand All

(-)a/CMakeLists.txt (-1 / +1 lines)
Lines 389-395 if(EIGEN_BUILD_PKGCONFIG) Link Here
389
        message(STATUS "pkgconfig not found; installing in ${pkg_config_install_dir}" )
389
        message(STATUS "pkgconfig not found; installing in ${pkg_config_install_dir}" )
390
    endif(pkg_config_libdir)
390
    endif(pkg_config_libdir)
391
391
392
    configure_file(eigen3.pc.in eigen3.pc)
392
    configure_file(eigen3.pc.in eigen3.pc @ONLY)
393
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/eigen3.pc
393
    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/eigen3.pc
394
        DESTINATION ${pkg_config_install_dir}/pkgconfig
394
        DESTINATION ${pkg_config_install_dir}/pkgconfig
395
        )
395
        )
(-)a/eigen3.pc.in (-2 / +5 lines)
Lines 1-6 Link Here
1
prefix=@CMAKE_INSTALL_PREFIX@
2
exec_prefix=${prefix}
3
1
Name: Eigen3
4
Name: Eigen3
2
Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms
5
Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms
3
Requires:
6
Requires:
4
Version: ${EIGEN_VERSION_NUMBER}
7
Version: @EIGEN_VERSION_NUMBER@
5
Libs:
8
Libs:
6
Cflags: -I${INCLUDE_INSTALL_DIR}
9
Cflags: -I${prefix}/@INCLUDE_INSTALL_DIR@

Return to bug 1100