blob: 687d68d9c8695745c3bc623f7ed1a0fea2d0f274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if(KDE4_BUILD_TESTS)
include_directories( ${CMAKE_SOURCE_DIR}/apps/dolphin/src )
# Tests don't need to go into toplevel/bin, they are fine in the current dir.
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
########### renamedialogtest ###############
kde4_automoc(renamedialogtest.cpp)
kde4_add_executable(renamedialogtest RUN_UNINSTALLED renamedialogtest.cpp)
target_link_libraries(renamedialogtest dolphin ${QT_QTTEST_LIBRARY})
############################################
endif(KDE4_BUILD_TESTS)
|