connectiviy: fix to detect column data type
[LibreOffice.git] / sdext / Library_pdfimport.mk
blob3359ef5e6a4600b36bd6b41a547f8cecaedce7b6
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_Library_Library,pdfimport))
12 $(eval $(call gb_Library_set_componentfile,pdfimport,sdext/source/pdfimport/pdfimport))
14 $(eval $(call gb_Library_use_sdk_api,pdfimport))
16 $(eval $(call gb_Library_use_custom_headers,pdfimport,sdext/pdfimport))
18 $(eval $(call gb_Library_set_include,pdfimport,\
19 -I$(SRCDIR)/sdext/source/pdfimport/inc \
20 $$(INCLUDE) \
23 $(eval $(call gb_Library_use_libraries,pdfimport,\
24 basegfx \
25 comphelper \
26 vcl \
27 cppu \
28 cppuhelper \
29 sal \
30 tl \
31 xo \
34 $(eval $(call gb_Library_use_externals,pdfimport,\
35 boost_headers \
36 zlib \
37 $(if $(filter-out WNT MACOSX,$(OS)),fontconfig) \
40 ifeq ($(COM),MSC)
41 $(eval $(call gb_Library_add_defs,pdfimport, \
42 -D_SILENCE_CXX17_ALLOCATOR_VOID_DEPRECATION_WARNING \
44 endif
46 $(eval $(call gb_Library_add_defs,pdfimport, \
47 -DBOOST_ALL_NO_LIB \
50 $(eval $(call gb_Library_add_exception_objects,pdfimport,\
51 sdext/source/pdfimport/filterdet \
52 sdext/source/pdfimport/misc/pdfihelper \
53 sdext/source/pdfimport/misc/pwdinteract \
54 sdext/source/pdfimport/odf/odfemitter \
55 sdext/source/pdfimport/pdfiadaptor \
56 sdext/source/pdfimport/pdfparse/pdfentries \
57 sdext/source/pdfimport/pdfparse/pdfparse \
58 sdext/source/pdfimport/sax/emitcontext \
59 sdext/source/pdfimport/sax/saxattrlist \
60 sdext/source/pdfimport/tree/drawtreevisiting \
61 sdext/source/pdfimport/tree/genericelements \
62 sdext/source/pdfimport/tree/imagecontainer \
63 sdext/source/pdfimport/tree/pdfiprocessor \
64 sdext/source/pdfimport/tree/style \
65 sdext/source/pdfimport/tree/treevisitorfactory \
66 sdext/source/pdfimport/tree/writertreevisiting \
67 sdext/source/pdfimport/wrapper/wrapper \
70 # vim:set noet sw=4 ts=4: