2012-02-18 11:54:35 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-19 15:10:42 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2012-02-18 11:54:35 -06:00
|
|
|
#
|
2013-04-19 15:10:42 -05: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/.
|
2012-02-18 11:54:35 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,pdfimport))
|
|
|
|
|
2012-04-19 05:12:29 -05:00
|
|
|
$(eval $(call gb_Library_set_componentfile,pdfimport,sdext/source/pdfimport/pdfimport))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,pdfimport))
|
2012-02-18 11:54:35 -06:00
|
|
|
|
2015-12-11 10:54:43 -06:00
|
|
|
$(eval $(call gb_Library_use_custom_headers,pdfimport,sdext/pdfimport))
|
|
|
|
|
2012-02-18 11:54:35 -06:00
|
|
|
$(eval $(call gb_Library_set_include,pdfimport,\
|
|
|
|
-I$(SRCDIR)/sdext/source/pdfimport/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,pdfimport,\
|
2012-11-24 15:58:01 -06:00
|
|
|
basegfx \
|
2015-08-19 05:24:37 -05:00
|
|
|
comphelper \
|
2013-03-20 18:37:28 -05:00
|
|
|
vcl \
|
2012-02-18 11:54:35 -06:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_externals,pdfimport,\
|
2013-01-26 14:19:13 -06:00
|
|
|
boost_headers \
|
2012-02-18 11:54:35 -06:00
|
|
|
zlib \
|
2014-05-20 12:57:58 -05:00
|
|
|
$(if $(filter-out WNT MACOSX,$(OS)),fontconfig) \
|
2012-02-18 11:54:35 -06:00
|
|
|
))
|
|
|
|
|
2015-12-11 10:54:43 -06:00
|
|
|
$(eval $(call gb_Library_add_defs,pdfimport, \
|
|
|
|
-DBOOST_SPIRIT_USE_OLD_NAMESPACE \
|
|
|
|
))
|
|
|
|
|
2012-02-18 11:54:35 -06:00
|
|
|
$(eval $(call gb_Library_add_exception_objects,pdfimport,\
|
2015-12-11 10:54:43 -06:00
|
|
|
sdext/source/pdfimport/filterdet \
|
|
|
|
sdext/source/pdfimport/misc/pdfihelper \
|
|
|
|
sdext/source/pdfimport/misc/pwdinteract \
|
|
|
|
sdext/source/pdfimport/odf/odfemitter \
|
|
|
|
sdext/source/pdfimport/pdfiadaptor \
|
|
|
|
sdext/source/pdfimport/pdfparse/pdfentries \
|
|
|
|
sdext/source/pdfimport/pdfparse/pdfparse \
|
|
|
|
sdext/source/pdfimport/sax/emitcontext \
|
|
|
|
sdext/source/pdfimport/sax/saxattrlist \
|
2012-02-18 11:54:35 -06:00
|
|
|
sdext/source/pdfimport/services \
|
2015-12-11 10:54:43 -06:00
|
|
|
sdext/source/pdfimport/tree/drawtreevisiting \
|
|
|
|
sdext/source/pdfimport/tree/genericelements \
|
|
|
|
sdext/source/pdfimport/tree/imagecontainer \
|
|
|
|
sdext/source/pdfimport/tree/pdfiprocessor \
|
|
|
|
sdext/source/pdfimport/tree/style \
|
|
|
|
sdext/source/pdfimport/tree/treevisitorfactory \
|
|
|
|
sdext/source/pdfimport/tree/writertreevisiting \
|
|
|
|
sdext/source/pdfimport/wrapper/wrapper \
|
2012-02-18 11:54:35 -06:00
|
|
|
))
|
|
|
|
|
2013-01-26 15:19:07 -06:00
|
|
|
# vim:set noet sw=4 ts=4:
|