* require CMake 2.6.2 everywhere, Alexander Neundorf says it'd make it

easier to have a uniform requirement in kdesupport for when he makes
fixes.
* add eigen versioning macros
This commit is contained in:
Benoit Jacob
2009-01-04 16:19:12 +00:00
parent 269bf67796
commit be64619ab6
3 changed files with 11 additions and 3 deletions

View File

@@ -28,6 +28,14 @@
#undef minor
#define EIGEN_WORLD_VERSION 2
#define EIGEN_MAJOR_VERSION 0
#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 && \
EIGEN_MINOR_VERSION>=z))))
#ifdef EIGEN_DEFAULT_TO_ROW_MAJOR
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Matrix_RowMajor
#else