2018-10-29 00:11:23 +01:00
|
|
|
TARGET = pbf
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin
|
|
|
|
QT += gui widgets
|
|
|
|
|
|
|
|
VERSION = 1.0.0
|
|
|
|
|
|
|
|
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 \
|
2018-10-29 18:30:55 +01:00
|
|
|
src/textpathitem.h \
|
|
|
|
src/textitem.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 \
|
2018-10-29 18:30:55 +01:00
|
|
|
src/textpathitem.cpp \
|
|
|
|
src/textitem.cpp
|
2018-10-29 00:11:23 +01:00
|
|
|
|
|
|
|
LIBS += -lprotobuf-lite
|
|
|
|
|
|
|
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
|
|
|
INSTALLS += target
|