mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
23 lines
453 B
CMake
23 lines
453 B
CMake
########### next target ###############
|
|
|
|
set(gsthumbnail_PART_SRCS gscreator.cpp)
|
|
|
|
kde4_add_plugin(gsthumbnail ${gsthumbnail_PART_SRCS})
|
|
|
|
target_link_libraries(gsthumbnail
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
${QT_QTGUI_LIBRARY}
|
|
)
|
|
|
|
install(
|
|
TARGETS gsthumbnail
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
FILES gsthumbnail.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|