mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
29 lines
585 B
CMake
29 lines
585 B
CMake
########### next target ###############
|
|
|
|
include_directories(
|
|
${LIBSPECTRE_INCLUDE_DIR}
|
|
)
|
|
|
|
set(psthumbnail_PART_SRCS pscreator.cpp)
|
|
|
|
kde4_add_kcfg_files(psthumbnail_PART_SRCS pscreatorsettings.kcfgc)
|
|
kde4_add_plugin(psthumbnail ${psthumbnail_PART_SRCS})
|
|
|
|
target_link_libraries(psthumbnail
|
|
KDE4::kdecore
|
|
KDE4::kio
|
|
${QT_QTGUI_LIBRARY}
|
|
${LIBSPECTRE_LIBRARY}
|
|
)
|
|
|
|
install(
|
|
TARGETS psthumbnail
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
FILES psthumbnail.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|