mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
15 lines
371 B
CMake
15 lines
371 B
CMake
include_directories(${KDE4_KPARTS_INCLUDES})
|
|
|
|
########### unit tests ###############
|
|
|
|
MACRO(KPARTS_UNIT_TESTS)
|
|
FOREACH(_testname ${ARGN})
|
|
kde4_add_test(kparts-${_testname} ${_testname}.cpp)
|
|
target_link_libraries(kparts-${_testname} ${QT_QTTEST_LIBRARY} kparts)
|
|
ENDFOREACH(_testname)
|
|
ENDMACRO(KPARTS_UNIT_TESTS)
|
|
|
|
KPARTS_UNIT_TESTS(
|
|
parttest
|
|
)
|
|
|