| Michael Weghorn | 720bf6a | 2023-06-22 08:48:05 +0200 | [diff] [blame] | 1 | # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- |
| 2 | # |
| Michael Meeks | d037b81 | 2026-03-26 15:06:16 +0000 | [diff] [blame] | 3 | # This file is part of the Collabora Office project. |
| Michael Weghorn | 720bf6a | 2023-06-22 08:48:05 +0200 | [diff] [blame] | 4 | # |
| 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 Lohmaier | 0c4c84a | 2024-05-02 11:19:38 +0200 | [diff] [blame] | 13 | $(gb_CustomTarget_workdir)/vcl/unx/kf6/KFFilePicker.moc |
| Michael Weghorn | 720bf6a | 2023-06-22 08:48:05 +0200 | [diff] [blame] | 14 | |
| 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 Lohmaier | 0c4c84a | 2024-05-02 11:19:38 +0200 | [diff] [blame] | 21 | $(gb_CustomTarget_workdir)/vcl/unx/kf6/%.moc : \ |
| Michael Weghorn | 720bf6a | 2023-06-22 08:48:05 +0200 | [diff] [blame] | 22 | $(SRCDIR)/vcl/unx/kf5/%.hxx \ |
| Christian Lohmaier | 0c4c84a | 2024-05-02 11:19:38 +0200 | [diff] [blame] | 23 | | $(gb_CustomTarget_workdir)/vcl/unx/kf6/.dir |
| Michael Weghorn | 720bf6a | 2023-06-22 08:48:05 +0200 | [diff] [blame] | 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) |
| 28 | |
| 29 | # vim: set noet sw=4: |