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