QtPBFImagePlugin/pbfplugin.pro

64 lines
1.3 KiB
Prolog
Raw Permalink Normal View History

2018-10-29 00:11:23 +01:00
TARGET = pbf
TEMPLATE = lib
CONFIG += plugin
QT += gui
2025-01-06 09:19:36 +01:00
VERSION = 4.0
2018-10-29 00:11:23 +01:00
HEADERS += src/pbfhandler.h \
2025-01-06 09:19:36 +01:00
src/data.h \
2018-10-29 00:11:23 +01:00
src/pbfplugin.h \
src/gzip.h \
src/pbf.h \
src/style.h \
src/color.h \
src/text.h \
src/tile.h \
src/function.h \
src/textpathitem.h \
src/textpointitem.h \
src/font.h \
2018-11-22 21:57:21 +01:00
src/textitem.h \
src/sprites.h
2018-10-29 00:11:23 +01:00
SOURCES += src/pbfplugin.cpp \
2025-01-06 09:19:36 +01:00
src/data.cpp \
2018-10-29 00:11:23 +01:00
src/pbfhandler.cpp \
src/gzip.cpp \
src/pbf.cpp \
src/style.cpp \
src/color.cpp \
src/text.cpp \
src/function.cpp \
src/textpathitem.cpp \
src/textpointitem.cpp \
2018-11-22 21:57:21 +01:00
src/font.cpp \
src/sprites.cpp \
src/textitem.cpp
RESOURCES += pbfplugin.qrc
2018-10-29 00:11:23 +01:00
2020-01-31 22:20:57 +01:00
DEFINES += QT_NO_DEPRECATED_WARNINGS
unix:!macx:!android {
2025-01-06 09:19:36 +01:00
LIBS += -lz
2023-12-15 21:21:10 +01:00
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target
2018-11-04 09:06:15 +01:00
}
win32 {
2025-01-06 09:19:36 +01:00
INCLUDEPATH += $$ZLIB/include
LIBS += $$ZLIB/lib/zlibstatic.lib
2023-10-08 11:02:57 +02:00
QMAKE_TARGET_PRODUCT = QtPBFImagePlugin
QMAKE_TARGET_DESCRIPTION = Qt $$QT_VERSION MVT/PBF image plugin
2025-01-03 19:28:34 +01:00
QMAKE_TARGET_COPYRIGHT = Copyright (c) 2018-2025 Martin Tuma
2018-11-04 09:06:15 +01:00
}
2018-11-11 19:28:22 +01:00
macx {
2025-01-06 09:19:36 +01:00
LIBS += -lz
2018-11-11 19:28:22 +01:00
}
android {
2025-01-06 09:19:36 +01:00
LIBS += -lz
2018-10-29 00:11:23 +01:00
2023-12-15 21:32:33 +01:00
top_builddir=$$shadowed($$PWD)
2023-12-18 20:21:06 +01:00
DESTDIR = $$top_builddir/plugins
TARGET = $$qt5LibraryTarget(libpbf, "plugins/imageformats/")
2023-12-15 21:21:10 +01:00
}