mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
13 lines
339 B
CMake
13 lines
339 B
CMake
PROJECT( copytester )
|
|
FIND_PACKAGE( KDE4 REQUIRED )
|
|
INCLUDE_DIRECTORIES( ${KDE4_INCLUDES} . )
|
|
|
|
|
|
SET( copytesterSources main.cpp copytester.cpp )
|
|
|
|
|
|
KDE4_ADD_EXECUTABLE( copytester ${copytesterSources} )
|
|
|
|
TARGET_LINK_LIBRARIES( copytester ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} )
|
|
|
|
install( TARGETS copytester ${INSTALL_TARGETS_DEFAULT_ARGS} )
|