mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
22 lines
639 B
Text
22 lines
639 B
Text
![]() |
include_directories(${CMAKE_SOURCE_DIR}/pimcommon/
|
||
|
)
|
||
|
|
||
|
|
||
|
macro(add_pimcommon_baloodebug_unittest _source)
|
||
|
set(_test ${_source} )
|
||
|
get_filename_component(_name ${_source} NAME_WE)
|
||
|
kde4_add_unit_test(${_name} TESTNAME pimcommon-baloodebug-${_name} ${_test} )
|
||
|
target_link_libraries( ${_name}
|
||
|
pimcommon
|
||
|
${QT_QTTEST_LIBRARY}
|
||
|
${QT_QTCORE_LIBRARY}
|
||
|
${QT_QTGUI_LIBRARY}
|
||
|
${KDE4_KDECORE_LIBS}
|
||
|
${KDE4_KDEUI_LIBS}
|
||
|
)
|
||
|
endmacro ()
|
||
|
|
||
|
add_pimcommon_baloodebug_unittest(baloodebugdialogtest.cpp)
|
||
|
add_pimcommon_baloodebug_unittest(baloodebugwidgettest.cpp)
|
||
|
add_pimcommon_baloodebug_unittest(baloodebugsearchpathcomboboxtest.cpp)
|