aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmake/EigenTesting.cmake
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-01-27 07:48:48 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-01-27 07:48:48 -0500
commitdcbf104bccec39e955ab84c76bf1d96beaa31aa1 (patch)
treeed86e7b1de8e048174ef4ab3291b5e188dfe814b /cmake/EigenTesting.cmake
parent35bacf7cb864d4cb6d74ec1fa6ed84006b00ddf2 (diff)
add EIGEN_DEFAULT_TO_ROW_MAJOR cmake option for the tests.
Diffstat (limited to 'cmake/EigenTesting.cmake')
-rw-r--r--cmake/EigenTesting.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/EigenTesting.cmake b/cmake/EigenTesting.cmake
index 4d02a470a..8830eef4e 100644
--- a/cmake/EigenTesting.cmake
+++ b/cmake/EigenTesting.cmake
@@ -148,6 +148,12 @@ macro(ei_testing_print_summary)
message("Enabled backends: ${EIGEN_TESTED_BACKENDS}")
message("Disabled backends: ${EIGEN_MISSING_BACKENDS}")
+ if(EIGEN_DEFAULT_TO_ROW_MAJOR)
+ message("Default order: Row-major")
+ else()
+ message("Default order: Column-major")
+ endif()
+
if(EIGEN_TEST_SSE2)
message("SSE2: ON")
else()