mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
6aa123656a
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
24 lines
603 B
CMake
24 lines
603 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../..
|
|
)
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(okularGenerator_xps_SRCS
|
|
generator_xps.cpp
|
|
)
|
|
|
|
|
|
kde4_add_plugin(okularGenerator_xps ${okularGenerator_xps_SRCS})
|
|
|
|
target_link_libraries(okularGenerator_xps okularcore ${KDE4_KDEUI_LIBS} )
|
|
|
|
install(TARGETS okularGenerator_xps DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES libokularGenerator_xps.desktop okularXps.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
install( FILES okularApplication_xps.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
|
|