QtPBFImagePlugin/pbfplugin.pro

73 lines
1.6 KiB
Prolog
Raw Normal View History

2018-10-29 00:11:23 +01:00
TARGET = pbf
TEMPLATE = lib
CONFIG += plugin
QT += gui
VERSION = 3.0
2018-10-29 00:11:23 +01:00
PROTOS = protobuf/vector_tile.proto
include(protobuf/vector_tile.pri)
INCLUDEPATH += ./protobuf
HEADERS += src/pbfhandler.h \
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 \
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 {
2018-11-04 09:06:15 +01:00
LIBS += -lprotobuf-lite \
-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 {
INCLUDEPATH += $$PROTOBUF/include \
$$ZLIB/include
LIBS += $$PROTOBUF/lib/libprotobuf-lite.lib \
$$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
QMAKE_TARGET_COPYRIGHT = Copyright (c) 2023 Martin Tuma
2018-11-04 09:06:15 +01:00
}
2018-11-11 19:28:22 +01:00
macx {
INCLUDEPATH += $$PROTOBUF/include
LIBS += $$PROTOBUF/lib/libprotobuf-lite.a \
-lz
}
android {
INCLUDEPATH += $$PROTOBUF/include
LIBS += $$PROTOBUF/$$ANDROID_TARGET_ARCH/libprotobuf-lite.a \
-lz
2018-10-29 00:11:23 +01:00
2023-12-15 21:32:33 +01:00
top_builddir=$$shadowed($$PWD)
2023-12-15 21:21:10 +01:00
DESTDIR = $$top_builddir/plugins/pbf
TARGET = $$qt5LibraryTarget(pbf, "plugins/imageformats/")
}