Finally remove non-native menu bar
[LibreOffice.git] / vcl / Library_vclplug_qt5.mk
blobd66a82319ed2e2ee56edd651bb28f0724e28b91a
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_qt5))
22 $(eval $(call gb_Library_use_custom_headers,vclplug_qt5,vcl/qt5))
24 $(eval $(call gb_Library_set_include,vclplug_qt5,\
25 $$(INCLUDE) \
26 -I$(SRCDIR)/vcl/inc \
27 -I$(SRCDIR)/vcl/inc/qt5 \
30 $(eval $(call gb_Library_add_defs,vclplug_qt5,\
31 -DVCLPLUG_QT5_IMPLEMENTATION \
34 $(eval $(call gb_Library_use_sdk_api,vclplug_qt5))
36 $(eval $(call gb_Library_use_libraries,vclplug_qt5,\
37 $(if $(USING_X11),vclplug_gen) \
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 \
52 salhelper \
55 $(eval $(call gb_Library_use_externals,vclplug_qt5,\
56 boost_headers \
57 cairo \
58 epoxy \
59 graphite \
60 harfbuzz \
61 icu_headers \
62 icuuc \
63 qt5 \
66 $(eval $(call gb_Library_add_defs,vclplug_qt5,\
67 $(QT5_CFLAGS) \
69 $(eval $(call gb_Library_add_libs,vclplug_qt5,\
70 $(QT5_LIBS) \
73 ifneq ($(QT5_HAVE_GLIB),)
74 $(eval $(call gb_Library_add_defs,vclplug_qt5,\
75 $(QT5_GLIB_CFLAGS) \
77 $(eval $(call gb_Library_add_libs,vclplug_qt5,\
78 $(QT5_GLIB_LIBS) \
80 endif
82 $(eval $(call gb_Library_add_exception_objects,vclplug_qt5,\
83 vcl/qt5/Qt5Bitmap \
84 vcl/qt5/Qt5Data \
85 vcl/qt5/Qt5FilePicker \
86 vcl/qt5/Qt5Font \
87 vcl/qt5/Qt5FontFace \
88 vcl/qt5/Qt5Frame \
89 vcl/qt5/Qt5Graphics \
90 vcl/qt5/Qt5Graphics_Controls \
91 vcl/qt5/Qt5Graphics_GDI \
92 vcl/qt5/Qt5Graphics_Text \
93 vcl/qt5/Qt5Instance \
94 vcl/qt5/Qt5Instance_Print \
95 vcl/qt5/Qt5MainWindow \
96 vcl/qt5/Qt5Menu \
97 vcl/qt5/Qt5Object \
98 vcl/qt5/Qt5Painter \
99 vcl/qt5/Qt5Printer \
100 vcl/qt5/Qt5System \
101 vcl/qt5/Qt5Timer \
102 vcl/qt5/Qt5Tools \
103 vcl/qt5/Qt5VirtualDevice \
104 vcl/qt5/Qt5Widget \
107 ifeq ($(OS),LINUX)
108 $(eval $(call gb_Library_add_libs,vclplug_qt5,\
109 -lm \
110 -ldl \
111 -lpthread \
113 endif
115 # vim: set noet sw=4 ts=4: