aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/ECMAddTests.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ECMAddTests.cmake b/modules/ECMAddTests.cmake
index d60d069b..8461ee76 100644
--- a/modules/ECMAddTests.cmake
+++ b/modules/ECMAddTests.cmake
@@ -67,7 +67,7 @@ function(ecm_add_test)
if(NOT ECM_ADD_TEST_GUI)
ecm_mark_nongui_executable(${_testname})
endif()
- add_test(NAME "${ECM_ADD_TEST_NAME_PREFIX}${_testname} COMMAND ${_testname})
+ add_test(NAME "${ECM_ADD_TEST_NAME_PREFIX}"${_testname} COMMAND ${_testname})
target_link_libraries(${_testname} ${ECM_ADD_TEST_LINK_LIBRARIES})
ecm_mark_as_test(${_testname})
endfunction()