2012-06-16 06:58:09 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,fastsax))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,fastsax,sax/source/fastparser/fastsax))
|
|
|
|
|
2012-08-24 13:11:45 -05:00
|
|
|
$(eval $(call gb_Library_set_include,fastsax,\
|
|
|
|
-I$(SRCDIR)/sax/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,fastsax))
|
2012-06-16 06:58:09 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_externals,fastsax,\
|
2012-08-24 13:11:45 -05:00
|
|
|
expat_utf8 \
|
2012-06-16 06:58:09 -05:00
|
|
|
zlib \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_libraries,fastsax,\
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
2012-08-24 13:11:45 -05:00
|
|
|
sax \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2012-06-16 06:58:09 -05:00
|
|
|
))
|
|
|
|
|
2012-08-24 13:11:45 -05:00
|
|
|
$(eval $(call gb_Library_use_static_libraries,fastsax,\
|
|
|
|
sax_shared \
|
2012-06-16 06:58:09 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,fastsax,\
|
2012-08-24 13:11:45 -05:00
|
|
|
sax/source/fastparser/facreg \
|
|
|
|
sax/source/fastparser/fastparser \
|
2012-06-16 06:58:09 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|