2014-11-27 14:05:13 +00:00
|
|
|
project(rawthumbnail)
|
|
|
|
|
|
|
|
## includes and linking
|
|
|
|
include_directories(${KEXIV2_INCLUDE_DIR} ${KDCRAW_INCLUDE_DIR})
|
|
|
|
|
|
|
|
|
|
|
|
#sources
|
|
|
|
set(rawthumbnail_SRCS rawcreator.cpp)
|
|
|
|
kde4_add_plugin(rawthumbnail ${rawthumbnail_SRCS})
|
|
|
|
|
|
|
|
|
|
|
|
## includes and linking
|
2015-10-29 13:15:46 +02:00
|
|
|
target_link_libraries(rawthumbnail
|
|
|
|
${KDE4_KIO_LIBS}
|
|
|
|
${KDE4_KDCRAW_LIBS}
|
|
|
|
${KDE4_KEXIV2_LIBS}
|
|
|
|
${KDE4_KDECORE_LIBS}
|
|
|
|
${QT_QTGUI_LIBRARY}
|
|
|
|
)
|
2014-11-27 14:05:13 +00:00
|
|
|
|
|
|
|
## install the plugin
|
2020-02-08 18:39:41 +00:00
|
|
|
install(TARGETS rawthumbnail DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES rawthumbnail.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|
2014-11-27 14:05:13 +00:00
|
|
|
|
|
|
|
|