vscode: add Cygwin terminal profile and config for VS debugger for Windows
[LibreOffice.git] / sdext / Library_pdfimport.mk
blobdc1290cd0eb17b6a7207eb1911a5e9da4671c872
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,services))
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 \
32 i18nutil \
35 $(eval $(call gb_Library_use_externals,pdfimport,\
36 boost_headers \
37 icu_headers \
38 zlib \
39 $(if $(filter-out WNT MACOSX,$(OS)),fontconfig) \
42 ifeq ($(COM),MSC)
43 $(eval $(call gb_Library_add_defs,pdfimport, \
44 -D_SILENCE_CXX17_ALLOCATOR_VOID_DEPRECATION_WARNING \
46 endif
48 $(eval $(call gb_Library_add_defs,pdfimport, \
49 -DBOOST_ALL_NO_LIB \
52 $(eval $(call gb_Library_add_exception_objects,pdfimport,\
53 sdext/source/pdfimport/filterdet \
54 sdext/source/pdfimport/misc/pdfihelper \
55 sdext/source/pdfimport/misc/pwdinteract \
56 sdext/source/pdfimport/odf/odfemitter \
57 sdext/source/pdfimport/pdfiadaptor \
58 sdext/source/pdfimport/pdfparse/pdfentries \
59 sdext/source/pdfimport/pdfparse/pdfparse \
60 sdext/source/pdfimport/sax/emitcontext \
61 sdext/source/pdfimport/sax/saxattrlist \
62 sdext/source/pdfimport/tree/drawtreevisiting \
63 sdext/source/pdfimport/tree/genericelements \
64 sdext/source/pdfimport/tree/imagecontainer \
65 sdext/source/pdfimport/tree/pdfiprocessor \
66 sdext/source/pdfimport/tree/style \
67 sdext/source/pdfimport/tree/treevisitorfactory \
68 sdext/source/pdfimport/tree/writertreevisiting \
69 sdext/source/pdfimport/wrapper/wrapper \
72 # vim:set noet sw=4 ts=4: