mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
20 lines
523 B
CMake
20 lines
523 B
CMake
set(knetattach_SRCS main.cpp knetattach.cpp)
|
|
|
|
|
|
kde4_add_ui_files(knetattach_SRCS knetattach.ui )
|
|
|
|
kde4_add_app_icon(knetattach_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/hi*-app-knetattach.png")
|
|
|
|
kde4_add_executable(knetattach ${knetattach_SRCS})
|
|
|
|
target_link_libraries(knetattach ${KDE4_KIO_LIBS} )
|
|
|
|
install(TARGETS knetattach DESTINATION ${LIBEXEC_INSTALL_DIR})
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( PROGRAMS knetattach.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
|
|
|
kde4_install_icons( ${ICON_INSTALL_DIR} )
|
|
|