mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
13 lines
334 B
CMake
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} )
|