LOK: custom widgets: check size of API structures
[LibreOffice.git] / xmlsecurity / Library_xmlsecurity.mk
bloba6f4e09d0c452ff63baf717f640e88c2f32be0c0
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_Library_Library,xmlsecurity))
12 $(eval $(call gb_Library_set_componentfile,xmlsecurity,xmlsecurity/util/xmlsecurity))
14 $(eval $(call gb_Library_set_include,xmlsecurity,\
15 $$(INCLUDE) \
16 -I$(SRCDIR)/xmlsecurity/inc \
19 $(eval $(call gb_Library_add_defs,xmlsecurity,\
20 -DXMLSECURITY_DLLIMPLEMENTATION \
23 $(eval $(call gb_Library_use_externals,xmlsecurity,boost_headers))
25 $(eval $(call gb_Library_set_precompiled_header,xmlsecurity,$(SRCDIR)/xmlsecurity/inc/pch/precompiled_xmlsecurity))
27 $(eval $(call gb_Library_use_sdk_api,xmlsecurity))
29 $(eval $(call gb_Library_use_libraries,xmlsecurity,\
30 comphelper \
31 cppu \
32 cppuhelper \
33 sal \
34 sax \
35 svl \
36 svt \
37 svxcore \
38 tl \
39 ucbhelper \
40 utl \
41 vcl \
42 xo \
43 i18nlangtag \
44 xsec_xmlsec \
47 $(eval $(call gb_Library_add_exception_objects,xmlsecurity,\
48 xmlsecurity/source/component/certificatecontainer \
49 xmlsecurity/source/component/documentdigitalsignatures \
50 xmlsecurity/source/dialogs/certificatechooser \
51 xmlsecurity/source/dialogs/certificateviewer \
52 xmlsecurity/source/dialogs/digitalsignaturesdialog \
53 xmlsecurity/source/dialogs/macrosecurity \
54 xmlsecurity/source/dialogs/resourcemanager \
55 xmlsecurity/source/framework/buffernode \
56 xmlsecurity/source/framework/elementcollector \
57 xmlsecurity/source/framework/elementmark \
58 xmlsecurity/source/framework/saxeventkeeperimpl \
59 xmlsecurity/source/framework/securityengine \
60 xmlsecurity/source/framework/signaturecreatorimpl \
61 xmlsecurity/source/framework/signatureengine \
62 xmlsecurity/source/framework/signatureverifierimpl \
63 xmlsecurity/source/framework/xmlsignaturetemplateimpl \
64 xmlsecurity/source/helper/documentsignaturehelper \
65 xmlsecurity/source/helper/documentsignaturemanager \
66 xmlsecurity/source/helper/ooxmlsecparser \
67 xmlsecurity/source/helper/ooxmlsecexporter \
68 xmlsecurity/source/helper/pdfsignaturehelper \
69 xmlsecurity/source/helper/xmlsignaturehelper2 \
70 xmlsecurity/source/helper/xmlsignaturehelper \
71 xmlsecurity/source/helper/xsecctl \
72 xmlsecurity/source/helper/xsecparser \
73 xmlsecurity/source/helper/xsecsign \
74 xmlsecurity/source/helper/xsecverify \
75 xmlsecurity/source/pdfio/pdfdocument \
78 $(eval $(call gb_Library_use_externals,xmlsecurity,\
79 libxml2 \
81 ifeq ($(OS),WNT)
82 $(eval $(call gb_Library_add_defs,xmlsecurity,\
83 -DXMLSEC_CRYPTO_MSCRYPTO \
85 $(eval $(call gb_Library_use_system_win32_libs,xmlsecurity,\
86 crypt32 \
88 else
89 ifneq (,$(filter DESKTOP,$(BUILD_TYPE))$(filter ANDROID,$(OS)))
90 $(eval $(call gb_Library_add_defs,xmlsecurity,\
91 -DXMLSEC_CRYPTO_NSS \
93 $(eval $(call gb_Library_use_externals,xmlsecurity,\
94 nss3 \
95 plc4 \
97 endif # BUILD_TYPE=DESKTOP
98 endif
100 # vim: set noet sw=4 ts=4: