mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2025-06-29 20:49:18 +02:00
Initial version
This commit is contained in:
35
pbfplugin.pro
Normal file
35
pbfplugin.pro
Normal file
@ -0,0 +1,35 @@
|
||||
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 \
|
||||
src/textpathitem.h
|
||||
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
|
||||
|
||||
LIBS += -lprotobuf-lite
|
||||
|
||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||
INSTALLS += target
|
Reference in New Issue
Block a user