kde-workspace/kioslave/fish/tests/CMakeLists.txt
2015-09-01 04:37:19 +03:00

13 lines
334 B
CMake

PROJECT( copytester )
FIND_PACKAGE( KDE4 REQUIRED )
INCLUDE_DIRECTORIES( ${KDE4_INCLUDES} . )
SET( copytesterSources main.cpp copytester.cpp )
add_executable( copytester ${copytesterSources} )
TARGET_LINK_LIBRARIES( copytester ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} )
install( TARGETS copytester ${INSTALL_TARGETS_DEFAULT_ARGS} )