mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
12 lines
383 B
CMake
12 lines
383 B
CMake
# This can be used for finding data files in the source dir, without installing them
|
|
project(knotifytest)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../config)
|
|
|
|
########### knotifytest ###############
|
|
|
|
set(knotifytest_SRCS main.cpp knotifytestwindow.cpp)
|
|
|
|
kde4_add_manual_test(knotifytest ${knotifytest_SRCS})
|
|
|
|
target_link_libraries(knotifytest ${KDE4_KIO_LIBS} knotifyconfig)
|