ba41718095
In the same way that `vcl/Library_vclplug_gtk4.mk` does
it, set the `GTK4_CFLAGS` (which have the includes) via
`gb_Library_set_include`, not `gb_Library_add_cxxflags`.
This makes sure that they end up in the `INCLUDE`
section in `workdir/GbuildToJson/Library/libavmediagtk.so`
and thus end up in the IDE integrations as includes,
which makes Qt Creator's Clang Code Model find them
instead of showing an error
("gtkplayer.cxx:28:10: 'gtk/gtk.h' file not found").
See also this similar commit for more details:
commit 6a53832080
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Mon Dec 17 15:35:58 2018 +0100
Use 'gb_Library_set_include' for GTK3_CFLAGS
Change-Id: I5ef01aff32073d37b8add0b2250402ccaa48b2dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167857
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Tested-by: Jenkins
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Library_Library,avmediagtk))
|
|
|
|
$(eval $(call gb_Library_set_componentfile,avmediagtk,avmedia/source/gtk/avmediagtk,services))
|
|
|
|
$(eval $(call gb_Library_set_include,avmediagtk,\
|
|
$$(INCLUDE) \
|
|
$$(GTK4_CFLAGS) \
|
|
-I$(SRCDIR)/avmedia/source/inc \
|
|
-I$(SRCDIR)/avmedia/source/gstreamer \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_external,avmediagtk,boost_headers))
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,avmediagtk))
|
|
|
|
$(eval $(call gb_Library_use_libraries,avmediagtk,\
|
|
comphelper \
|
|
cppu \
|
|
cppuhelper \
|
|
sal \
|
|
salhelper \
|
|
tl \
|
|
vcl \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_libs,avmediagtk,\
|
|
$(GTK4_LIBS) \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,avmediagtk,\
|
|
avmedia/source/gtk/gstwindow \
|
|
avmedia/source/gtk/gtkmanager \
|
|
avmedia/source/gtk/gtkplayer \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|