2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-08-02 02:50:36 +02:00
|
|
|
#
|
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,xsec_fw))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,xsec_fw,xmlsecurity/util/xsec_fw))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,xsec_fw,\
|
|
|
|
$$(INCLUDE) \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/xmlsecurity/inc \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2014-06-04 09:02:37 +02:00
|
|
|
$(eval $(call gb_Library_set_precompiled_header,xsec_fw,$(SRCDIR)/xmlsecurity/inc/pch/precompiled_xsec_fw))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,xsec_fw))
|
2011-08-02 02:50:36 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,xsec_fw,\
|
2013-06-05 11:32:31 +02:00
|
|
|
comphelper \
|
2011-08-02 02:50:36 +02:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
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,xsec_fw,\
|
|
|
|
xmlsecurity/source/framework/buffernode \
|
|
|
|
xmlsecurity/source/framework/decryptorimpl \
|
|
|
|
xmlsecurity/source/framework/elementcollector \
|
|
|
|
xmlsecurity/source/framework/elementmark \
|
|
|
|
xmlsecurity/source/framework/encryptionengine \
|
|
|
|
xmlsecurity/source/framework/encryptorimpl \
|
|
|
|
xmlsecurity/source/framework/saxeventkeeperimpl \
|
|
|
|
xmlsecurity/source/framework/securityengine \
|
|
|
|
xmlsecurity/source/framework/signaturecreatorimpl \
|
|
|
|
xmlsecurity/source/framework/signatureengine \
|
|
|
|
xmlsecurity/source/framework/signatureverifierimpl \
|
|
|
|
xmlsecurity/source/framework/xmlencryptiontemplateimpl \
|
|
|
|
xmlsecurity/source/framework/xmlsignaturetemplateimpl \
|
|
|
|
xmlsecurity/source/framework/xsec_framework \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|