From 765600458bb82422a3f720b6080a3d22e65a2a5e Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 27 Sep 2009 18:05:54 -0400 Subject: [PATCH] * bump to 2.90.0 now that it's agreed that we're doing eigen3 ---> question: do we change the prefix eigen2/ to eigen3/ now? no, better wait until we've also changed the repository name * more message improvements: "Install Eigen" was unclear as it left out other things like the BLAS library --- CMakeLists.txt | 4 +++- Eigen/src/Core/util/Macros.h | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 913c094fd..1edc1eb12 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,11 +138,13 @@ if(EIGEN_BUILD_BTL) endif(EIGEN_BUILD_BTL) ei_testing_print_summary() +message("") +message("Configured Eigen ${EIGEN_VERSION_NUMBER}") message("You can now do the following:") message("-------------+-----------------------------------------------------------------") message("Command | Description") message("-------------+-----------------------------------------------------------------") -message("make install | Install Eigen to ${CMAKE_INSTALL_PREFIX}") +message("make install | Install to ${CMAKE_INSTALL_PREFIX}") message(" | Do: cmake . -DCMAKE_INSTALL_PREFIX=yourprefix to change that") message("make test | Build and run the unit tests (using CTest)") message(" | Note: this takes lots of time & memory! Easy on the -j option!") diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h index 530306643..71962bcae 100644 --- a/Eigen/src/Core/util/Macros.h +++ b/Eigen/src/Core/util/Macros.h @@ -29,8 +29,8 @@ #undef minor #define EIGEN_WORLD_VERSION 2 -#define EIGEN_MAJOR_VERSION 0 -#define EIGEN_MINOR_VERSION 52 +#define EIGEN_MAJOR_VERSION 90 +#define EIGEN_MINOR_VERSION 0 #define EIGEN_VERSION_AT_LEAST(x,y,z) (EIGEN_WORLD_VERSION>x || (EIGEN_WORLD_VERSION>=x && \ (EIGEN_MAJOR_VERSION>y || (EIGEN_MAJOR_VERSION>=y && \