You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.2 KiB
138 lines
3.2 KiB
remove_definitions(-DTRANSLATION_DOMAIN="okular") |
|
add_definitions(-DTRANSLATION_DOMAIN="okular_poppler") |
|
|
|
add_subdirectory( conf ) |
|
|
|
set(CMAKE_REQUIRED_LIBRARIES Poppler::Qt5 Qt5::Core Qt5::Gui) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
#include <QImage> |
|
int main() |
|
{ |
|
Poppler::Page *p = nullptr; |
|
p->renderToImage(0, 0, 0, 0, 0, 0, Poppler::Page::Rotate0, nullptr, nullptr, nullptr, QVariant()); |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_63) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
#include <poppler-form.h> |
|
#include <poppler-link.h> |
|
int main() |
|
{ |
|
Poppler::FormField *f = nullptr; |
|
f->setReadOnly(true); |
|
f->setVisible(true); |
|
Poppler::Link *l = nullptr; |
|
l->nextLinks(); |
|
} |
|
" HAVE_POPPLER_0_64) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
#include <poppler-form.h> |
|
int main() |
|
{ |
|
Poppler::FormField *f = nullptr; |
|
f->additionalAction(Poppler::Annotation::CursorEnteringAction); |
|
} |
|
" HAVE_POPPLER_0_65) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
#include <poppler-form.h> |
|
int main() |
|
{ |
|
auto f = &Poppler::SignatureValidationInfo::reason; |
|
(void)f; |
|
} |
|
" HAVE_POPPLER_0_68) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
#include <QColor> |
|
int main() |
|
{ |
|
Poppler::TextAnnotation *annot = new Poppler::TextAnnotation( Poppler::TextAnnotation::InPlace ); |
|
annot->setTextColor( Qt::blue ); |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_69) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-version.h> |
|
int main() |
|
{ |
|
QString s = Poppler::Version::string(); |
|
(void)s; |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_73) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-form.h> |
|
#include <poppler-qt5.h> |
|
int main() |
|
{ |
|
Poppler::FormFieldIcon icon(nullptr); |
|
Poppler::FormFieldButton *button = nullptr; |
|
button->setIcon( icon ); |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_79) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-qt5.h> |
|
int main() |
|
{ |
|
Poppler::FontInfo info; |
|
QString substituteName = info.substituteName(); |
|
(void)substituteName; |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_80) |
|
|
|
check_cxx_source_compiles(" |
|
#include <poppler-form.h> |
|
int main() |
|
{ |
|
Poppler::FormFieldChoice *ffc = nullptr; |
|
ffc->choicesWithExportValues(); |
|
return 0; |
|
} |
|
" HAVE_POPPLER_0_87) |
|
|
|
configure_file( |
|
${CMAKE_CURRENT_SOURCE_DIR}/config-okular-poppler.h.cmake |
|
${CMAKE_CURRENT_BINARY_DIR}/config-okular-poppler.h |
|
) |
|
|
|
include_directories( |
|
${CMAKE_CURRENT_SOURCE_DIR}/../.. |
|
) |
|
|
|
########### next target ############### |
|
|
|
set(okularGenerator_poppler_PART_SRCS |
|
generator_pdf.cpp |
|
formfields.cpp |
|
annots.cpp |
|
pdfsignatureutils.cpp |
|
) |
|
|
|
ki18n_wrap_ui(okularGenerator_poppler_PART_SRCS |
|
conf/pdfsettingswidget.ui |
|
) |
|
|
|
kconfig_add_kcfg_files(okularGenerator_poppler_PART_SRCS conf/pdfsettings.kcfgc ) |
|
|
|
okular_add_generator(okularGenerator_poppler ${okularGenerator_poppler_PART_SRCS}) |
|
|
|
target_link_libraries(okularGenerator_poppler okularcore KF5::I18n KF5::Completion Poppler::Qt5 Qt5::Xml) |
|
|
|
########### install files ############### |
|
install( FILES okularPoppler.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} ) |
|
install( PROGRAMS okularApplication_pdf.desktop org.kde.mobile.okular_pdf.desktop DESTINATION ${KDE_INSTALL_APPDIR} ) |
|
install( FILES org.kde.okular-poppler.metainfo.xml DESTINATION ${KDE_INSTALL_METAINFODIR} )
|
|
|