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_Module_Module,xmlsecurity))
|
|
|
|
|
2016-12-19 13:19:57 +00:00
|
|
|
ifeq ($(ENABLE_NSS),TRUE)
|
2016-12-15 16:43:43 +02:00
|
|
|
|
2011-08-02 02:50:36 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,xmlsecurity,\
|
|
|
|
Library_xmlsecurity \
|
2016-12-15 16:43:43 +02:00
|
|
|
Library_xsec_xmlsec \
|
2017-06-11 20:56:30 +01:00
|
|
|
UIConfig_xmlsec \
|
2011-08-02 02:50:36 +02:00
|
|
|
))
|
|
|
|
|
2016-01-11 15:46:10 +01:00
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,xmlsecurity,\
|
|
|
|
CppunitTest_xmlsecurity_signing \
|
2016-10-21 11:48:47 +02:00
|
|
|
CppunitTest_xmlsecurity_pdfsigning \
|
2016-01-11 15:46:10 +01:00
|
|
|
))
|
|
|
|
|
2013-11-13 02:12:48 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,xmlsecurity,\
|
2017-06-11 20:56:30 +01:00
|
|
|
AllLangMoTarget_xsc \
|
2013-11-13 02:12:48 +01:00
|
|
|
))
|
|
|
|
|
2011-08-02 02:50:36 +02:00
|
|
|
# failing
|
|
|
|
#$(eval $(call gb_Module_add_check_targets,xmlsecurity,\
|
|
|
|
CppunitTest_qa_certext \
|
|
|
|
))
|
|
|
|
|
2016-08-17 09:43:33 +02:00
|
|
|
# screenshots
|
|
|
|
$(eval $(call gb_Module_add_screenshot_targets,xmlsecurity,\
|
2016-07-22 17:44:30 +02:00
|
|
|
CppunitTest_xmlsecurity_dialogs_test \
|
|
|
|
))
|
|
|
|
|
2016-10-12 16:50:09 +02:00
|
|
|
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_targets,xmlsecurity,\
|
|
|
|
Executable_pdfverify \
|
|
|
|
))
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2016-12-15 16:43:43 +02:00
|
|
|
endif
|
|
|
|
|
2011-08-02 02:50:36 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|