diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-01-30 22:47:59 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-01-30 22:47:59 +0100 |
commit | d8d8c5e060212a15bca65f31e297f8edbf725fb0 (patch) | |
tree | e317e5a0718a215501e6e6b5859b1ed7949fbc4f | |
parent | b14a2da3b92460ef7dddbc98b4a794d61840a97c (diff) | |
download | tdelibs-d8d8c5e060212a15bca65f31e297f8edbf725fb0.tar.gz tdelibs-d8d8c5e060212a15bca65f31e297f8edbf725fb0.zip |
testing: fix execution of test tdeabc/vcardparser/testread2 with CMake older than 2.8.4
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | tdeabc/vcardparser/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tdeabc/vcardparser/CMakeLists.txt b/tdeabc/vcardparser/CMakeLists.txt index e141d1f47..692b7829f 100644 --- a/tdeabc/vcardparser/CMakeLists.txt +++ b/tdeabc/vcardparser/CMakeLists.txt @@ -73,6 +73,12 @@ tde_add_check_executable( testread2 LINK ${TDEABC_TESTS_LINK} ) +if( CMAKE_VERSION VERSION_LESS "2.8.4" ) + if( NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/tests" ) + execute_process( COMMAND ln -s "${CMAKE_CURRENT_SOURCE_DIR}/tests" "${CMAKE_CURRENT_BINARY_DIR}/tests" ) + endif( ) +endif() + add_test( NAME tdeabc/vcardparser/testread2 COMMAND testread2 WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" ) # testread tests |