Build static library for pugi xml parser.

This commit is contained in:
Alex Zolotarev 2015-11-24 17:29:47 -08:00
parent 8f58a197f5
commit 18edbd7d36
2 changed files with 17 additions and 1 deletions

View file

@ -7,7 +7,7 @@ TEMPLATE = subdirs
CONFIG *= desktop
}
SUBDIRS = freetype fribidi minizip jansson tomcrypt protobuf osrm expat succinct
SUBDIRS = freetype fribidi minizip jansson tomcrypt protobuf osrm expat succinct pugixml
# TODO(mgsrergio): Move opening hours out of 3party to the main project tree.
# See https://trello.com/c/tWYSnXSS/22-opening-hours-3party-boost-test-framework.

View file

@ -0,0 +1,16 @@
# Pugi xml parser with XML DOM & XPath support.
TARGET = pugixml
TEMPLATE = lib
CONFIG += staticlib
ROOT_DIR = ../..
include($$ROOT_DIR/common.pri)
SOURCES += \
src/pugixml.cpp \
HEADERS += \
src/pugixml.hpp \
src/pugiconfig.hpp \