mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
24 lines
662 B
CMake
24 lines
662 B
CMake
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
# 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_ui_files(knotifytest_SRCS knotifytestview.ui)
|
|
|
|
|
|
kde4_add_executable(knotifytest TEST ${knotifytest_SRCS})
|
|
|
|
target_link_libraries(knotifytest ${KDE4_KIO_LIBS} knotifyconfig )
|
|
|
|
#the binary file doesn't need to be installed
|
|
#install(TARGETS knotifytest DESTINATION ${BIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|