blob: 42f6dac14c9205080e789714322b834edd71a065 [file] [log] [blame]
Michael Weghorn720bf6a2023-06-22 08:48:05 +02001# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#
Michael Meeksd037b812026-03-26 15:06:16 +00003# This file is part of the Collabora Office project.
Michael Weghorn720bf6a2023-06-22 08:48:05 +02004#
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/.
8#
9
10$(eval $(call gb_CustomTarget_CustomTarget,vcl/unx/kf6))
11
12$(call gb_CustomTarget_get_target,vcl/unx/kf6) : \
Christian Lohmaier0c4c84a2024-05-02 11:19:38 +020013 $(gb_CustomTarget_workdir)/vcl/unx/kf6/KFFilePicker.moc
Michael Weghorn720bf6a2023-06-22 08:48:05 +020014
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
Christian Lohmaier0c4c84a2024-05-02 11:19:38 +020021$(gb_CustomTarget_workdir)/vcl/unx/kf6/%.moc : \
Michael Weghorn720bf6a2023-06-22 08:48:05 +020022 $(SRCDIR)/vcl/unx/kf5/%.hxx \
Christian Lohmaier0c4c84a2024-05-02 11:19:38 +020023 | $(gb_CustomTarget_workdir)/vcl/unx/kf6/.dir
Michael Weghorn720bf6a2023-06-22 08:48:05 +020024 $(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)
28
29# vim: set noet sw=4: