source: terepaima/terepaima-0.4.16/fitz-plugin.pro

desarrollostretch
Last change on this file was 1f4adec, checked in by aosorio <aosorio@…>, 8 years ago

Agregado proyecto base, esto luego del dh_make -f

  • Property mode set to 100644
File size: 695 bytes
Line 
1include(qpdfview.pri)
2
3TARGET = qpdfview_fitz
4TEMPLATE = lib
5CONFIG += plugin
6static_fitz_plugin:CONFIG += static
7
8TARGET_SHORT = qpdffitz
9!isEmpty(PLUGIN_DESTDIR): DESTDIR = $$PLUGIN_DESTDIR
10
11OBJECTS_DIR = objects-fitz
12MOC_DIR = moc-fitz
13
14HEADERS = sources/model.h sources/fitzmodel.h
15SOURCES = sources/fitzmodel.cpp
16
17QT += core gui
18
19greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
20
21DEFINES += $$FITZ_PLUGIN_DEFINES
22INCLUDEPATH += $$FITZ_PLUGIN_INCLUDEPATH
23
24isEmpty(FITZ_PLUGIN_LIBS) {
25    LIBS += -lmupdf -lfreetype -ljbig2dec -lopenjp2 -ljpeg -lz -lm -lcrypto
26} else {
27    LIBS += $$FITZ_PLUGIN_LIBS
28}
29
30!static_fitz_plugin {
31    target.path = $${PLUGIN_INSTALL_PATH}
32    INSTALLS += target
33}
Note: See TracBrowser for help on using the repository browser.