mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 03:12:49 +00:00
19 lines
462 B
CMake
19 lines
462 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}
|
|
../
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
kde4_add_manual_test(kutils-kemoticonstest main.cpp)
|
|
target_link_libraries(kutils-kemoticonstest
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KEMOTICONS_LIBS}
|
|
)
|
|
|
|
set(kemoticontest2_SRCS kemoticontest.cpp)
|
|
kde4_add_test(kutils-kemoticontest2 ${kemoticontest2_SRCS})
|
|
target_link_libraries(kutils-kemoticontest2
|
|
${KDE4_KIO_LIBS}
|
|
${KDE4_KEMOTICONS_LIBS}
|
|
${QT_QTTEST_LIBRARY}
|
|
)
|