tdf#113448 fix PDF forms export
[LibreOffice.git] / vcl / Library_vclplug_kde5.mk
blob704557150ae50dd18be953ff0b22adef77ed1b8f
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/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 $(eval $(call gb_Library_Library,vclplug_kde5))
22 $(eval $(call gb_Library_use_custom_headers,vclplug_kde5,vcl/unx/kde5))
24 $(eval $(call gb_Library_set_include,vclplug_kde5,\
25 $$(INCLUDE) \
26 -I$(SRCDIR)/vcl/inc \
27 -I$(SRCDIR)/vcl/inc/qt5 \
30 $(eval $(call gb_Library_add_defs,vclplug_kde5,\
31 -DVCLPLUG_KDE5_IMPLEMENTATION \
34 $(eval $(call gb_Library_use_sdk_api,vclplug_kde5))
36 $(eval $(call gb_Library_use_libraries,vclplug_kde5,\
37 vclplug_qt5 \
38 vcl \
39 tl \
40 utl \
41 sot \
42 ucbhelper \
43 basegfx \
44 comphelper \
45 cppuhelper \
46 i18nlangtag \
47 i18nutil \
48 $(if $(ENABLE_JAVA), \
49 jvmaccess) \
50 cppu \
51 sal \
54 $(eval $(call gb_Library_use_externals,vclplug_kde5,\
55 boost_headers \
56 cairo \
57 graphite \
58 harfbuzz \
59 icuuc \
60 kde5 \
61 epoxy \
64 ifneq ($(QT5_HAVE_GLIB),)
65 $(eval $(call gb_Library_add_defs,vclplug_kde5,\
66 $(QT5_GLIB_CFLAGS) \
69 $(eval $(call gb_Library_add_libs,vclplug_kde5,\
70 $(QT5_GLIB_LIBS) \
72 endif
74 $(eval $(call gb_Library_add_defs,vclplug_kde5,\
75 $(KF5_CFLAGS) \
77 $(eval $(call gb_Library_add_libs,vclplug_kde5,\
78 $(KF5_LIBS) \
81 $(eval $(call gb_Library_add_exception_objects,vclplug_kde5,\
82 vcl/unx/kde5/KDE5FilePicker2 \
83 vcl/unx/kde5/KDE5SalData \
84 vcl/unx/kde5/KDE5SalFrame \
85 vcl/unx/kde5/KDE5SalGraphics \
86 vcl/unx/kde5/KDE5SalInstance \
89 ifeq ($(OS),LINUX)
90 $(eval $(call gb_Library_add_libs,vclplug_kde5,\
91 -lm \
92 -ldl \
93 -lpthread \
95 endif
97 # Workaround for clang+icecream (clang's -frewrite-includes
98 # doesn't handle Qt5's QT_HAS_INCLUDE that Qt5 uses for <chrono>).
99 ifeq ($(COM_IS_CLANG),TRUE)
100 $(eval $(call gb_Library_add_defs,vclplug_kde5, \
101 -include chrono \
103 endif
105 # vim: set noet sw=4 ts=4: