diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b6e3439cca..02de8fc5b8 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,34 +1,34 @@ # Due to the use of system() and some unix-style paths this test will only run # under Linux. (Maybe this can be fixed later) # # Moreover, I'm not sure if there is a cvs commandline client for windows # (need to check this out ...) if (UNIX) # Running the test only makes sense if the git command line client # is present. So check for it before adding the test... FIND_PROGRAM(GIT NAMES git PATHS /bin /usr/bin /usr/local/bin ) if (GIT) set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} ) set(gitInitTest_SRCS initTest.cpp ../gitplugin.cpp) kde4_add_unit_test(kdevgit-test ${gitInitTest_SRCS}) target_link_libraries(kdevgit-test ${QT_QTTEST_LIBRARY} ${KDE4_KDECORE_LIBS} kdevplatformshell kdevplatforminterfaces kdevplatformutil kdevplatformvcs - kdevplatformtestshell + kdevplatformtests ) endif (GIT) endif (UNIX)