summaryrefslogtreecommitdiff
path: root/sdext/Library_pdfimport.mk
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-02-18 18:54:35 +0100
committerDavid Tardon <dtardon@redhat.com>2012-03-06 10:26:33 +0100
commitdba2d32d5b5bdf33801565795030e92ce6997c37 (patch)
tree134ea1599a96eca8845e1652aad616b3824713d8 /sdext/Library_pdfimport.mk
parent6ed50e5159b7b02e0eeebaa1b583e0116d7cfd8a (diff)
gbuildize sdext
Diffstat (limited to 'sdext/Library_pdfimport.mk')
-rw-r--r--sdext/Library_pdfimport.mk86
1 files changed, 86 insertions, 0 deletions
diff --git a/sdext/Library_pdfimport.mk b/sdext/Library_pdfimport.mk
new file mode 100644
index 000000000000..9f4528a9cf04
--- /dev/null
+++ b/sdext/Library_pdfimport.mk
@@ -0,0 +1,86 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the "License"); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2012 Red Hat, Inc., David Tardon <dtardon@redhat.com>
+# (initial developer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+$(eval $(call gb_Library_Library,pdfimport))
+
+$(eval $(call gb_Library_add_api,pdfimport,\
+ offapi \
+ udkapi \
+))
+
+# FIXME: set PLATFORMID correctly
+$(eval $(call gb_Library_add_defs,pdfimport,\
+ -DBOOST_SPIRIT_USE_OLD_NAMESPACE \
+ -DPDFI_IMPL_IDENTIFIER=\"com.sun.star.PDFImport-$(PLATFORMID)\" \
+))
+
+$(eval $(call gb_Library_add_package_headers,pdfimport,\
+ sdext_pdfimport_keywords \
+))
+
+$(eval $(call gb_Library_set_include,pdfimport,\
+ -I$(WORKDIR)/CustomTarget/sdext/source/pdfimport/wrapper \
+ -I$(SRCDIR)/sdext/source/pdfimport/inc \
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_add_linked_libs,pdfimport,\
+ cppu \
+ cppuhelper \
+ sal \
+))
+
+$(eval $(call gb_Library_add_linked_static_libs,pdfimport,\
+ basegfx_s \
+))
+
+$(eval $(call gb_Library_use_externals,pdfimport,\
+ zlib \
+))
+
+$(eval $(call gb_Library_add_exception_objects,pdfimport,\
+ 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 \
+ sdext/source/pdfimport/services \
+ 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 \
+))
+
+# vim:set shiftwidth=4 softtabstop=4 expandtab: