2022-10-11 16:23:09 +03:00
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${POPPLER_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(pdfthumbnail_PART_SRCS pdfcreator.cpp)
|
|
|
|
|
|
|
|
kde4_add_kcfg_files(pdfthumbnail_PART_SRCS pdfcreatorsettings.kcfgc)
|
|
|
|
kde4_add_plugin(pdfthumbnail ${pdfthumbnail_PART_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(pdfthumbnail
|
2023-06-17 23:28:51 +03:00
|
|
|
KDE4::kdecore
|
|
|
|
KDE4::kio
|
2023-08-01 03:17:10 +00:00
|
|
|
KDE4::karchive
|
2022-10-11 16:23:09 +03:00
|
|
|
${QT_QTGUI_LIBRARY}
|
|
|
|
${POPPLER_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS pdfthumbnail
|
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES pdfthumbnail.desktop
|
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
|
|
)
|