Files
loongoffice/xmlsecurity/Module_xmlsecurity.mk
Caolán McNamara a0effa00b4 revert 'tweak for pdfiumless build'
commit 8d747b8cf849b7d705048544ac20eceba7eb5a45
Author: Caolán McNamara <caolanm@redhat.com>
Date:   Sat Apr 29 20:01:40 2017 +0100

    tweak for pdfiumless build

and lets see if

commit 6f53cf281eb3c13fc516ff79decb70b2a87a96d0
Author: Markus Mohrhard <markus.mohrhard@googlemail.com>
Date:   Sat Apr 29 05:11:40 2017 +0200

    apparently the executable does not need pdfium directly anymore

is sufficient here

Change-Id: I2bf381e1d51d851aa829730b3d13edb1c03ea873
2017-05-02 09:50:26 +01:00

59 lines
1.3 KiB
Makefile

# -*- 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_Module_Module,xmlsecurity))
ifeq ($(ENABLE_NSS),TRUE)
#FIXME: ^^^, get nss&libxmlsec building on ios and android
#chromium has patches to build statically FWIW
$(eval $(call gb_Module_add_targets,xmlsecurity,\
Library_xmlsecurity \
Library_xsec_fw \
Library_xsec_xmlsec \
))
ifneq ($(filter-out WNT MACOSX ANDROID IOS,$(OS)),)
$(eval $(call gb_Module_add_targets,xmlsecurity,\
Library_xsec_gpg \
))
endif
$(eval $(call gb_Module_add_slowcheck_targets,xmlsecurity,\
CppunitTest_xmlsecurity_signing \
CppunitTest_xmlsecurity_pdfsigning \
))
$(eval $(call gb_Module_add_l10n_targets,xmlsecurity,\
AllLangResTarget_xsec \
UIConfig_xmlsec \
))
# failing
#$(eval $(call gb_Module_add_check_targets,xmlsecurity,\
CppunitTest_qa_certext \
))
# screenshots
$(eval $(call gb_Module_add_screenshot_targets,xmlsecurity,\
CppunitTest_xmlsecurity_dialogs_test \
))
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,xmlsecurity,\
Executable_pdfverify \
))
endif
endif
# vim: set noet sw=4 ts=4: