aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-05-29 20:49:06 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-05-29 20:49:06 +0200
commiteef4b7bd8768a79078ba6d4adc9f85b3f5937e39 (patch)
tree432be0f5253ce75c267b911a70cffdb29d147d56 /test
parent647b724a364f4492f39f607d7007b7feac838bf8 (diff)
Fix handling of path names containing spaces and the likes.
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 073effd81..12c12b06d 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -47,7 +47,7 @@ set(EIGEN_TEST_MATRIX_DIR "" CACHE STRING "Enable testing of realword sparse mat
if(EIGEN_TEST_MATRIX_DIR)
if(NOT WIN32)
message(STATUS "Test realworld sparse matrices: ${EIGEN_TEST_MATRIX_DIR}")
- add_definitions( -DTEST_REAL_CASES="${EIGEN_TEST_MATRIX_DIR}" )
+ add_definitions( -DTEST_REAL_CASES=${EIGEN_TEST_MATRIX_DIR} )
else(NOT WIN32)
message(STATUS "REAL CASES CAN NOT BE CURRENTLY TESTED ON WIN32")
endif(NOT WIN32)