2011-08-02 02:50:36 +02:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# 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/.
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,xmlsecurity))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,xmlsecurity,xmlsecurity/util/xmlsecurity))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,xmlsecurity,\
|
|
|
|
$$(INCLUDE) \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/xmlsecurity/inc \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_Library_use_external,xmlsecurity,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,xmlsecurity))
|
2011-08-02 02:50:36 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,xmlsecurity,\
|
2011-08-02 02:50:36 +02:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
#i108468#: clean up xmluconv code duplication, part 1:
move convertNumber64 from SvXMLUnitConverter to sax::converter.
remove duplicate methods from SvXMLUnitConverter:
convertBool, convertPercent, convertColor, convertNumber, convertDouble,
indexOfComma, encodeBase64, decodeBase64, decodeBase64SomeChars,
clearUndefinedChars
2011-10-11 14:19:00 +02:00
|
|
|
sax \
|
2011-08-02 02:50:36 +02:00
|
|
|
svl \
|
|
|
|
svt \
|
|
|
|
svxcore \
|
|
|
|
tl \
|
|
|
|
ucbhelper \
|
|
|
|
utl \
|
|
|
|
vcl \
|
|
|
|
xo \
|
2013-04-05 18:40:39 +02:00
|
|
|
i18nlangtag \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,xmlsecurity,\
|
|
|
|
xmlsecurity/source/component/certificatecontainer \
|
|
|
|
xmlsecurity/source/component/documentdigitalsignatures \
|
|
|
|
xmlsecurity/source/component/registerservices \
|
|
|
|
xmlsecurity/source/dialogs/certificatechooser \
|
|
|
|
xmlsecurity/source/dialogs/certificateviewer \
|
|
|
|
xmlsecurity/source/dialogs/digitalsignaturesdialog \
|
|
|
|
xmlsecurity/source/dialogs/macrosecurity \
|
|
|
|
xmlsecurity/source/dialogs/resourcemanager \
|
|
|
|
xmlsecurity/source/helper/documentsignaturehelper \
|
|
|
|
xmlsecurity/source/helper/xmlsignaturehelper2 \
|
|
|
|
xmlsecurity/source/helper/xmlsignaturehelper \
|
|
|
|
xmlsecurity/source/helper/xsecctl \
|
|
|
|
xmlsecurity/source/helper/xsecparser \
|
|
|
|
xmlsecurity/source/helper/xsecsign \
|
|
|
|
xmlsecurity/source/helper/xsecverify \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|