2016-10-12 09:50:09 -05:00
|
|
|
# -*- 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_Executable_Executable,pdfverify))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_sdk_api,pdfverify))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_set_include,pdfverify,\
|
|
|
|
$$(INCLUDE) \
|
2016-10-13 03:37:02 -05:00
|
|
|
-I$(SRCDIR)/xmlsecurity/inc \
|
2016-10-12 09:50:09 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_libraries,pdfverify,\
|
|
|
|
comphelper \
|
2016-10-13 14:07:55 -05:00
|
|
|
cppu \
|
2016-10-14 11:13:34 -05:00
|
|
|
cppuhelper \
|
2016-10-12 09:50:09 -05:00
|
|
|
sal \
|
|
|
|
tl \
|
2016-10-13 03:37:02 -05:00
|
|
|
xmlsecurity \
|
2016-10-12 09:50:09 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,pdfverify,\
|
|
|
|
xmlsecurity/source/pdfio/pdfverify \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim:set noet sw=4 ts=4:
|