Update git submodules
[LibreOffice.git] / vcl / CustomTarget_kf6_moc.mk
blobb42549566955ab85205a3d50e3306516c9d5c4a6
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_CustomTarget_CustomTarget,vcl/unx/kf6))
12 $(call gb_CustomTarget_get_target,vcl/unx/kf6) : \
13 $(gb_CustomTarget_workdir)/vcl/unx/kf6/KFFilePicker.moc
15 # For now, the headers in vcl/unx/kf6 just '#include' the ones
16 # in 'vcl/unx/kf5'.
17 # Since moc does not process classes from the included headers,
18 # it needs to be run on the headers in the kf5 dir.
19 # That will have to be adapted in case the kf6 VCL plugin
20 # uses "own" headers
21 $(gb_CustomTarget_workdir)/vcl/unx/kf6/%.moc : \
22 $(SRCDIR)/vcl/unx/kf5/%.hxx \
23 | $(gb_CustomTarget_workdir)/vcl/unx/kf6/.dir
24 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),MOC,1)
25 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),MOC)
26 $(MOC6) $< -o $@
27 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),MOC)
29 # vim: set noet sw=4: