Update git submodules
[LibreOffice.git] / vcl / CustomTarget_qt6_moc.mk
blob77aab947164d214c0de4f9d2fb25da6c3b051157
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/qt6))
12 $(call gb_CustomTarget_get_target,vcl/qt6) : \
13 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtClipboard.moc \
14 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtFilePicker.moc \
15 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtFrame.moc \
16 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtInstance.moc \
17 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtMainWindow.moc \
18 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtMenu.moc \
19 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtObject.moc \
20 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtTimer.moc \
21 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtWidget.moc \
22 $(call gb_CustomTarget_get_workdir,vcl/qt6)/QtXAccessible.moc \
24 # For now, the headers in vcl/inc/qt6 just '#include' the ones
25 # in 'vcl/inc/qt5'.
26 # Since moc does not process classes from the included headers,
27 # it needs to be run on the headers in the qt5 dir.
28 # That will have to be adapted in case the qt6 VCL plugin
29 # uses "own" headers
30 $(call gb_CustomTarget_get_workdir,vcl/qt6)/%.moc : \
31 $(SRCDIR)/vcl/inc/qt5/%.hxx \
32 | $(call gb_CustomTarget_get_workdir,vcl/qt6)/.dir
33 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),MOC,1)
34 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),MOC)
35 $(MOC6) $< -o $@
36 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),MOC)
38 # vim: set noet sw=4: