okular/generators/tiff/CMakeLists.txt
Pino Toscano 6aa123656a Port the plugin system to the standard KDE factory and loader, getting rid of the custom system okular had so far.
This requires a generator to have a
  MyGenerator(QObject *parent, const QVariantList &args)
constructor in order to be successfully loaded.
The OKULAR_EXPORT_PLUGIN macro was adapted, and the generators to provide it the about data; the protected Generator::setAboutData() is no more needed.

Remove the 'lib' prefix from plugins, unneeded now.

CCMAIL: okular-devel@kde.org

svn path=/trunk/KDE/kdegraphics/okular/; revision=744169
2007-12-02 20:57:24 +00:00

26 lines
673 B
CMake

include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/../..
${TIFF_INCLUDE_DIR}
)
########### next target ###############
set(okularGenerator_tiff_SRCS
generator_tiff.cpp
)
kde4_add_plugin(okularGenerator_tiff ${okularGenerator_tiff_SRCS})
target_link_libraries(okularGenerator_tiff okularcore ${TIFF_LIBRARIES} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} )
install(TARGETS okularGenerator_tiff DESTINATION ${PLUGIN_INSTALL_DIR})
########### install files ###############
install( FILES libokularGenerator_tiff.desktop okularTiff.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
install( FILES okularApplication_tiff.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )