2011-09-15 07:01:27 -05:00
|
|
|
#
|
2012-06-21 06:04:30 -05:00
|
|
|
# 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/.
|
|
|
|
#
|
|
|
|
# This file incorporates work covered by the following license notice:
|
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2011-09-15 07:01:27 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,pdffilter))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,pdffilter,filter/source/pdf/pdffilter))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,pdffilter))
|
2011-09-15 07:01:27 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,pdffilter,\
|
|
|
|
-I$(SRCDIR)/filter/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,pdffilter,\
|
2011-09-15 07:01:27 -05:00
|
|
|
svt \
|
|
|
|
sfx \
|
|
|
|
tk \
|
|
|
|
vcl \
|
|
|
|
utl \
|
|
|
|
tl \
|
|
|
|
svl \
|
2012-11-22 05:26:52 -06:00
|
|
|
i18nisolang1 \
|
2011-09-15 07:01:27 -05:00
|
|
|
comphelper \
|
|
|
|
basegfx \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2011-09-15 07:01:27 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,pdffilter,\
|
|
|
|
filter/source/pdf/impdialog \
|
|
|
|
filter/source/pdf/pdfdialog \
|
|
|
|
filter/source/pdf/pdfexport \
|
|
|
|
filter/source/pdf/pdffilter \
|
|
|
|
filter/source/pdf/pdfinteract \
|
|
|
|
filter/source/pdf/pdfuno \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|