VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox4/Makefile.kmk@ 9524

Last change on this file since 9524 was 9524, checked in by vboxsync, 17 years ago

FE/Qt4: Build fix's for linux & Mac OS X.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 35.5 KB
Line 
1# $Id: Makefile.kmk 9524 2008-06-09 08:33:03Z vboxsync $
2## @file
3# Makefile for the VirtualBox Qt GUI.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22# include qmake project file
23include VBoxUI.pro
24
25# Import QDesigner UI sources
26VirtualBox_QT_UISRCS3 := $(FORMS)
27# Import translation sources
28VirtualBox_QT_TRANSLATIONS := $(TRANSLATIONS)
29
30# reset things to avoid possible conflicts with kBuild
31TEMPLATE :=
32LANGUAGE :=
33FORMS :=
34TRANSLATIONS :=
35IMAGES :=
36
37VBOX_WITH_REGISTRATION := 1
38VBOX_WITH_REGISTRATION_REQUEST := 1
39
40DEPTH = ../../../..
41include $(KBUILD_PATH)/header.kmk
42
43# Disable the debugger for now, this is another story.
44VBOX_WITH_DEBUGGER_GUI :=
45DEFS := $(filter-out VBOX_WITH_DEBUGGER_GUI,$(DEFS))
46
47#
48# Handmade configuration of qt4 - very annoying, this needs to
49# be cleaned up properly later some time (not important now).
50#
51ifndef VBOX_PATH_QT4
52 if1of ($(USERNAME), bird)
53 # gentoo (64-bit)
54 VBOX_PATH_QT4 ?= /usr
55 VBOX_PATH_QT4_BIN ?= /usr/bin
56 VBOX_PATH_QT4_INCLUDE ?= /usr/include/qt4
57 VBOX_PATH_QT4_LIB ?= /usr/lib/qt4
58 VBOX_PATH_QT4_LIB64 ?= /usr/lib/qt4
59 VBOX_PATH_QT4_SHARE ?= /usr/share/qt4
60 endif
61endif
62VBOX_PATH_QT4 ?= /usr
63VBOX_PATH_QT4_BIN ?= $(VBOX_PATH_QT4)/bin
64VBOX_PATH_QT4_INCLUDE ?= $(VBOX_PATH_QT4)/include
65VBOX_PATH_QT4_LIB ?= $(VBOX_PATH_QT4)/lib
66VBOX_PATH_QT4_LIB64 ?= $(VBOX_PATH_QT4)/lib64
67VBOX_PATH_QT4_SHARE ?= $(VBOX_PATH_QT4)
68
69VBOX_MODULE_QT4 = QtCore QtGui QtNetwork Qt3Support
70# @todo: remove later: this is necessary only as long as Qt3Support is necessary
71# (it links to them)
72VBOX_MODULE_QT4 += QtSql QtXml
73
74VBOX_DEFS_QT4 = QT_CORE_LIB QT_GUI_LIB QT_NETWORK_LIB QT_QT3SUPPORT_LIB
75
76ifeq ($(KBUILD_TARGET),darwin)
77 VBOX_MODULE_QT4 += QtSql QtXml
78 VBOX_DEFS_QT4 = QT_SQL_LIB QT_XML_LIB
79 VBOX_INCS_QT4 = $(foreach mod, $(VBOX_MODULE_QT4), $(join $(join /Library/Frameworks/, $(mod)), .framework/Headers))
80 VBOX_LIBS_QT4 =
81else
82
83 VBOX_INCS_QT4 = \
84 $(addprefix $(VBOX_PATH_QT4_INCLUDE)/, $(VBOX_MODULE_QT4) Qt) \
85 $(VBOX_PATH_QT4_INCLUDE)
86 ifeq ($(KBUILD_TARGET),win)
87 ifeq ($(KBUILD_TARGET_ARCH),amd64)
88 $(error Port me!)
89 else
90 VBOX_INCS_QT4 += $(VBOX_PATH_QT4_SHARE)/mkspecs/win32-msvc.net
91 endif
92 else ifeq ($(KBUILD_TARGET),linux)
93 VBOX_INCS_QT4 += $(VBOX_PATH_QT4_SHARE)/mkspecs/linux-g++
94 endif
95
96 # add the VBox prefix to Qt libs if they are built by us
97 ifeq ($(KBUILD_TARGET),win)
98 VBOX_LIBS_QT4 = $(patsubst %, VBox%4, $(VBOX_MODULE_QT4))
99 VBOX_QT4_RUNTIME = $(patsubst %, $(VBOX_PATH_QT4_LIB)/VBox%4.dll, $(VBOX_MODULE_QT4))
100 else
101 VBOX_LIBS_QT4 = $(VBOX_MODULE_QT4)
102 VBOX_QT4_RUNTIME =
103 endif
104
105 ifeq ($(KBUILD_TARGET),win)
106 VBOX_LIBS_QT4 := $(addsuffix .lib, $(VBOX_LIBS_QT4)) VBoxqtmain.lib
107 endif
108
109endif
110
111# Warn about all what you know about porting qt3->qt4.
112# Disable this if you like to see something on your screen.
113VBOX_DEFS_QT4 += QT3_SUPPORT_WARNINGS
114# Some default defs
115VBOX_DEFS_QT4 += QT3_SUPPORT QT_SHARED HAVE_CONFIG_H QT_NO_DEBUG
116
117VBOX_UIC3 ?= $(VBOX_PATH_QT4_BIN)/uic3
118VBOX_UIC4 ?= $(VBOX_PATH_QT4_BIN)/uic
119VBOX_MOC4 ?= $(VBOX_PATH_QT4_BIN)/moc
120VBOX_RCC4 ?= $(VBOX_PATH_QT4_BIN)/rcc
121VBOX_LUPDATE4 ?= $(VBOX_PATH_QT4_BIN)/lupdate
122VBOX_LRELEASE4 ?= $(VBOX_PATH_QT4_BIN)/lrelease
123
124# tell moc what platform we are on to let it properly define
125# Q_OS_* and Q_WS_* macros when including qglobal.h
126# (is there a better way?)
127ifeq ($(KBUILD_TARGET),win)
128 ifeq ($(KBUILD_TARGET_ARCH),amd64)
129 VBOX_MOC4 += -DWIN64
130 else
131 VBOX_MOC4 += -DWIN32
132 endif
133else ifeq ($(KBUILD_TARGET),linux)
134 # when nothing special is defined, Q_OS_UNIX/Q_WS_X11 will be set
135else ifeq ($(KBUILD_TARGET),darwin)
136 VBOX_MOC4 += -D__APPLE__ -D__GNUC__
137else
138 $(error Port me!)
139endif
140
141# The Qt DLLs (move to the root Makefile.kmk, and remove bin from INSTALLS below).
142bin_SOURCES += $(VBOX_QT4_RUNTIME)
143bin_INST = $(INST_BIN)
144bin_MODE = 644
145
146# Template copy from the qt3 stuff. Appended a "4" on the
147# relevant places.
148
149#
150# Template for building Qt GUI executables.
151#
152
153TEMPLATE_VBOXQT4GUIEXE = VBox Qt4 GUI Executable
154TEMPLATE_VBOXQT4GUIEXE_DEFS = IN_RING3 QT_NO_DEBUG QT_THREAD_SUPPORT $(ARCH_BITS_DEFS) $(VBOX_DEFS_QT4)
155TEMPLATE_VBOXQT4GUIEXE_INCS = \
156 $(VBOX_PATH_SDK)/include \
157 $(VBOX_INCS_QT4)
158
159ifeq ($(KBUILD_TARGET),win)
160 TEMPLATE_VBOXQT4GUIEXE_TOOL = $(VBOX_VCC_TOOL)
161 TEMPLATE_VBOXQT4GUIEXE_DEFS += \
162 _WIN32_WINNT=0x0500 UNICODE _UNICODE \
163 QT_DLL _CRT_SECURE_NO_DEPRECATE \
164 $(QMAKE_PRL_DEFINES)
165 ## @todo VCC70 flags?
166 ifdef VBOX_USE_VCC80
167 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS = \
168 -nologo -Zm200 -W3 -MD -Zi -EHsc -Zc:wchar_t-
169 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS.debug = -RTCsu
170 else
171 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS = \
172 -nologo -Zm200 -W3 -MD -Zi -GX
173 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS.debug = -GZ
174 endif
175 TEMPLATE_VBOXQT4GUIEXE_INCS += \
176 $(PATH_TOOL_$(VBOX_VCC_TOOL)_ATLMFC_INC)
177 TEMPLATE_VBOXQT4GUIEXE_LDFLAGS = \
178 /NOD /NOLOGO /INCREMENTAL:NO /MAPINFO:EXPORTS /DEBUG \
179 /DELAYLOAD:oleaut32.dll
180 TEMPLATE_VBOXQT4GUIEXE_SDKS = WINPSDK
181 TEMPLATE_VBOXQT4GUIEXE_LIBS = \
182 $(VBOX_LIBS_QT4) \
183 $(LIB_RUNTIME) \
184 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/msvcprt.lib \
185 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/msvcrt.lib \
186 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/oldnames.lib \
187 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib \
188 $(PATH_TOOL_$(VBOX_VCC_TOOL)_ATLMFC_LIB)/atls.lib
189 TEMPLATE_VBOXQT4GUIEXE_LIBPATH = $(VBOX_PATH_QT4_LIB)
190 TEMPLATE_VBOXQT4GUIEXE_POST_CMDS = $(VBOX_SIGN_IMAGE_CMDS)
191
192else # the gcc guys:
193 TEMPLATE_VBOXQT4GUIEXE_TOOL = $(VBOX_GCC_TOOL)
194 TEMPLATE_VBOXQT4GUIEXE_DEFS.linux = _REENTRANT
195
196 TEMPLATE_VBOXQT4GUIEXE_DEFS.solaris = _REENTRANT
197
198 TEMPLATE_VBOXQT4GUIEXE_INCS += \
199 $(LIB_SDL_INC)
200 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS = \
201 -pipe -Wall -W -frtti -fno-exceptions -Wno-non-virtual-dtor \
202 -Wno-long-long -fshort-wchar -fno-strict-aliasing \
203 $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden)
204 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS.x86 = -m32
205 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS.amd64 = -m64
206 TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS.linux = -pthread
207 TEMPLATE_VBOXQT4GUIEXE_LDFLAGS.x86 = -m32
208 TEMPLATE_VBOXQT4GUIEXE_LDFLAGS.amd64 = -m64
209 TEMPLATE_VBOXQT4GUIEXE_LIBS = \
210 $(VBOX_LIBS_QT4) \
211 $(LIB_SDL) \
212 $(LIB_RUNTIME) \
213 $(LIB_REM) \
214 $(LIB_VMM)
215
216 ifeq ($(KBUILD_TARGET_ARCH),amd64)
217 TEMPLATE_VBOXQT4GUIEXE_LIBPATH = \
218 $(VBOX_PATH_QT4_LIB64) $(VBOX_PATH_QT4_LIB)
219 else
220 TEMPLATE_VBOXQT4GUIEXE_LIBPATH = \
221 $(VBOX_PATH_QT4_LIB)
222 endif
223
224 ifeq ($(KBUILD_TARGET),linux)
225 TEMPLATE_VBOXQT4GUIEXE_LDFLAGS += $(VBOX_LD_as_needed)
226 TEMPLATE_VBOXQT4GUIEXE_LIBS += \
227 $(VBOX_XCURSOR_LIBS)
228 else ifeq ($(KBUILD_TARGET),darwin)
229 TEMPLATE_VBOXQT4GUIEXE_LDFLAGS += $(foreach mod, $(VBOX_MODULE_QT4), -framework $(mod)) \
230 -framework Carbon -framework QuickTime -bind_at_load
231 TEMPLATE_VBOXQT4GUIEXE_LIBS +=
232 TEMPLATE_VBOXQT4GUIEXE_LIBPATH +=
233 else
234 TEMPLATE_VBOXQT4GUIEXE_INCS += \
235 $(VBOX_XCURSOR_INCS)
236 TEMPLATE_VBOXQT4GUIEXE_LIBS += \
237 $(VBOX_XCURSOR_LIBS) \
238 Xext \
239 X11 \
240 m \
241 $(LIB_PTHREAD)
242 TEMPLATE_VBOXQT4GUIEXE_LIBPATH += \
243 $(VBOX_LIBPATH_X11)
244 ifeq ($(KBUILD_TARGET),freebsd)
245 TEMPLATE_VBOXQT4GUIEXE_INCS += \
246 /usr/include \
247 /usr/X11R6/include \
248 /usr/local/include
249 endif
250 endif
251
252endif
253
254# Add COM/XPCOM stuff
255TEMPLATE_VBOXQT4GUIEXE_LIBS += \
256 $(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB)
257ifdef VBOX_WITH_XPCOM
258 ## @todo may be worth creating the VBOX_XPCOM SDK def
259 TEMPLATE_VBOXQT4GUIEXE_DEFS += VBOX_WITH_XPCOM
260 TEMPLATE_VBOXQT4GUIEXE_INCS += \
261 $(VBOX_XPCOM_INCS)
262 TEMPLATE_VBOXQT4GUIEXE_LIBS += \
263 $(LIB_XPCOM)
264endif
265
266#
267# Template for building Qt GUI components.
268#
269TEMPLATE_VBOXQT4GUI = VBox Qt GUI Components
270TEMPLATE_VBOXQT4GUI_EXTENDS = VBOXQTGUIEXE
271TEMPLATE_VBOXQT4GUI_LIBS = $(filter-out $(QTMAIN),$(TEMPLATE_VBOXQT4GUIEXE_LIBS))
272ifeq ($(KBUILD_TARGET),darwin)
273 TEMPLATE_VBOXQT4GUI_LDFLAGS = $(filter-out -framework Carbon -framework QuickTime -bind_at_load,$(TEMPLATE_VBOXQT4GUIEXE_LDFLAGS))
274endif
275ifeq ($(filter-out solaris.x86 %.amd64,$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),)
276 ifneq ($(KBUILD_TARGET),win)
277 TEMPLATE_VBOXQT4GUI_DEFS = PIC $(TEMPLATE_VBOXQT4GUIEXE_DEFS)
278 TEMPLATE_VBOXQT4GUI_CFLAGS = -fPIC $(TEMPLATE_VBOXQT4GUIEXE_CFLAGS)
279 TEMPLATE_VBOXQT4GUI_CXXFLAGS = -fPIC $(TEMPLATE_VBOXQT4GUIEXE_CXXFLAGS)
280 TEMPLATE_VBOXQT4GUI_LDFLAGS = -fPIC $(TEMPLATE_VBOXQT4GUIEXE_LDFLAGS)
281 endif
282endif
283
284
285#
286# exclude inappropriate UI content
287#
288ifndef VBOX_WITH_REGISTRATION
289VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxRegistrationDlg.ui,$(VirtualBox_QT_UISRCS3))
290endif
291
292
293#
294# filter ported UI content
295#
296VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxCloseVMDlg.ui,$(VirtualBox_QT_UISRCS3))
297VirtualBox_QT_UISRCS4 += ui/VBoxCloseVMDlg.ui
298
299VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxNewVMWzd.ui,$(VirtualBox_QT_UISRCS3))
300VirtualBox_QT_UISRCS4 += ui/VBoxNewVMWzd.ui
301
302VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxNewHDWzd.ui,$(VirtualBox_QT_UISRCS3))
303VirtualBox_QT_UISRCS4 += ui/VBoxNewHDWzd.ui
304
305VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMFirstRunWzd.ui,$(VirtualBox_QT_UISRCS3))
306VirtualBox_QT_UISRCS4 += ui/VBoxVMFirstRunWzd.ui
307
308VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxRegistrationDlg.ui,$(VirtualBox_QT_UISRCS3))
309VirtualBox_QT_UISRCS4 += ui/VBoxRegistrationDlg.ui
310
311VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxSnapshotDetailsDlg.ui,$(VirtualBox_QT_UISRCS3))
312VirtualBox_QT_UISRCS4 += ui/VBoxSnapshotDetailsDlg.ui
313
314VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMInformationDlg.ui,$(VirtualBox_QT_UISRCS3))
315VirtualBox_QT_UISRCS4 += ui/VBoxVMInformationDlg.ui
316
317VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxTakeSnapshotDlg.ui,$(VirtualBox_QT_UISRCS3))
318VirtualBox_QT_UISRCS4 += ui/VBoxTakeSnapshotDlg.ui
319
320VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxSnapshotsWgt.ui,$(VirtualBox_QT_UISRCS3))
321VirtualBox_QT_UISRCS4 += ui/VBoxSnapshotsWgt.ui
322
323VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMLogViewer.ui,$(VirtualBox_QT_UISRCS3))
324VirtualBox_QT_UISRCS4 += ui/VBoxVMLogViewer.ui
325
326VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxDiskImageManagerDlg.ui,$(VirtualBox_QT_UISRCS3))
327VirtualBox_QT_UISRCS4 += ui/VBoxDiskImageManagerDlg.ui
328
329VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsGeneral.ui,$(VirtualBox_QT_UISRCS3))
330VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsGeneral.ui
331
332VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsCD.ui,$(VirtualBox_QT_UISRCS3))
333VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsCD.ui
334
335VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsFD.ui,$(VirtualBox_QT_UISRCS3))
336VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsFD.ui
337
338VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsAudio.ui,$(VirtualBox_QT_UISRCS3))
339VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsAudio.ui
340
341VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsNetwork.ui,$(VirtualBox_QT_UISRCS3))
342VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsNetwork.ui
343
344VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsSerial.ui,$(VirtualBox_QT_UISRCS3))
345VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsSerial.ui
346
347VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsParallel.ui,$(VirtualBox_QT_UISRCS3))
348VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsParallel.ui
349
350VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsUSB.ui,$(VirtualBox_QT_UISRCS3))
351VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsUSB.ui
352
353VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsSF.ui,$(VirtualBox_QT_UISRCS3))
354VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsSF.ui
355
356VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsVRDP.ui,$(VirtualBox_QT_UISRCS3))
357VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsVRDP.ui
358
359VirtualBox_QT_UISRCS3 := $(filter-out ui/VBoxVMSettingsDlg.ui,$(VirtualBox_QT_UISRCS3))
360VirtualBox_QT_UISRCS4 += ui/VBoxVMSettingsDlg.ui
361
362#
363# The targets.
364#
365PROGRAMS = VirtualBox
366ifeq ($(filter-out freebsd linux openbsd netbsd solaris,$(KBUILD_TARGET)),) # X11
367DLLS = VBoxKeyboard4
368OTHERS = $(PATH_BIN)/vboxkeyboard4.tar.gz
369endif
370INSTALLS = VirtualBox.nls bin
371
372ifeq ($(KBUILD_TARGET),os2)
373 DLLS += VBoxHlp
374 ifneq ($(strip $(VBOX_DLL_QT)),)
375 INSTALLS += qt.dll
376 qt.dll_INST = $(INST_BIN)
377 qt.dll_SOURCES += \
378 $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
379 endif
380endif
381
382
383#
384# VBoxHlp - helper DLL for OS/2.
385#
386VBoxHlp_ASTOOL = NASM
387VBoxHlp_ASFLAGS = -f obj
388VBoxHlp_DEFS = IN_RING3 IN_VBOXHLP
389VBoxHlp_CXXFLAGS = -fno-exceptions
390VBoxHlp_LDFLAGS = -nostdlib -los2
391VBoxHlp_LDFLAGS += -Zlinker option -Zlinker manyautodata
392VBoxHlp_SOURCES = \
393 src/os2/VBoxHlp.asm \
394 src/os2/VBoxHlp.cpp
395
396
397#
398# VBoxKeyboard - keyboard library for X11.
399#
400VBoxKeyboard4_TEMPLATE = VBOXR3
401VBoxKeyboard4_SOURCES = \
402 src/linux/keyboard-new.c
403VBoxKeyboard4_TARSOURCES = \
404 $(VBoxKeyboard4_SOURCES) \
405 src/linux/COPYING.LIB \
406 src/linux/keyboard.h \
407 src/linux/keyboard-layouts.h \
408 src/linux/keyboard-list.h \
409 src/linux/keyboard-tables.h \
410 src/linux/Makefile
411VBoxKeyboard4_LIBS = X11
412VBoxKeyboard4_LIBPATH = $(VBOX_LIBPATH_X11)
413
414
415#
416# vboxkeyboard.tar.gz - the LGPLed keyboard library must always be
417# redistributed with usable sources.
418#
419SOURCE_DIRECTORY = vboxkeyboard4
420DIRECTORY_PREFIX = src/linux/
421
422$(PATH_TARGET)/$(SOURCE_DIRECTORY):
423 $(MKDIR) -p $(@D)
424 $(LN_SYMLINK) $(abspath $(PATH_CURRENT))/$(DIRECTORY_PREFIX) $@
425
426$(PATH_BIN)/vboxkeyboard4.tar.gz: $(VBoxKeyboard4_TARSOURCES) $(PATH_TARGET)/$(SOURCE_DIRECTORY)
427 $(call MSG_TOOL,tar/gzip,,$@)
428 $(QUIET)cd $(PATH_TARGET) && tar -chf - $(addprefix $(SOURCE_DIRECTORY)/,$(subst $(DIRECTORY_PREFIX),,$(VBoxKeyboard4_TARSOURCES))) | gzip - > $@
429
430
431#
432# VirtualBox - The GUI program.
433#
434VirtualBox_TEMPLATE = VBOXQT4GUIEXE
435VirtualBox_NAME = VirtualBox4
436VirtualBox_SDKS.win = WINPSDK DXSDK
437#ifeq ($(filter-out freebsd linux netbsd openbsd os2 solaris,$(KBUILD_TARGET)),) - later
438ifeq ($(filter-out freebsd linux netbsd openbsd os2,$(KBUILD_TARGET)),) # X11 + os2
439VirtualBox_SDKS += LIBSDL
440endif
441
442ifeq ($(KBUILD_TARGET),darwin)
443# For the launch trick we need different inode numbers.
444VirtualBox_INST = $(INST_BIN)VirtualBox4 $(INST_BIN)VirtualBoxVM4
445
446 # For testing iChat Theater stuff change
447 # the sdk path
448 ifdef VBOX_WITH_ICHAT_THEATER
449 VBOX_PATH_MACOSX_SDK = /Developer/SDKs/MacOSX10.5.sdk
450 endif
451
452endif
453
454ifndef VBOX_OSE
455ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # linux only, yea, right.
456# Note: I'm doing this right here because the GUI will _not_ run
457# without that file which might be annoying for developers!
458$(VBOX_LICENSE_BIN): $(VBOX_LICENSE_SRC)
459 $(call MSG_GENERATE,,$@)
460 $(QUIET)$(CP) $< $@
461
462$(PATH_BIN)/VirtualBox: $(VBOX_LICENSE_BIN)
463endif
464endif
465
466# Each nls/VirtualBox_xx_YY.ts file must have a qt_xx_YY.ts counterpart
467VirtualBox_QT_TRANSLATIONS_QT := \
468 $(patsubst nls/VirtualBox_%.ts,nls/qt_%.ts,\
469 $(filter nls/VirtualBox_%.ts,$(VirtualBox_QT_TRANSLATIONS)))
470
471# QDesigner UI sources are imported from VBoxUI.pro as VirtualBox_QT_UISRC
472
473# Headers containing definitions of classes that use the Q_OBJECT macro
474VirtualBox_QT_MOCHDRS = \
475 include/QIWidgetValidator.h \
476 include/QIHotKeyEdit.h \
477 include/QIStatusBar.h \
478 include/QIStateIndicator.h \
479 include/QIMessageBox.h \
480 include/QILabel.h \
481 include/QILabel_p.h \
482 include/QIAbstractWizard.h \
483 include/QIListView.h \
484 include/QITreeWidget.h \
485 include/QIMainDialog.h \
486 include/VBoxGlobalSettings.h \
487 include/VBoxUtils.h \
488 include/VBoxGlobal.h \
489 include/VBoxVMListView.h \
490 include/VBoxMediaComboBox.h \
491 include/VBoxSelectorWnd.h \
492 include/VBoxConsoleWnd.h \
493 include/VBoxConsoleView.h \
494 include/VBoxProblemReporter.h \
495 include/VBoxDownloaderWgt.h \
496 include/VBoxNetworkFramework.h \
497 include/VBoxAboutDlg.h \
498 include/VBoxCloseVMDlg.h \
499 include/VBoxNewVMWzd.h \
500 include/VBoxNewHDWzd.h \
501 include/VBoxVMFirstRunWzd.h \
502 include/VBoxRegistrationDlg.h \
503 include/VBoxSnapshotDetailsDlg.h \
504 include/VBoxVMInformationDlg.h \
505 include/VBoxTakeSnapshotDlg.h \
506 include/VBoxSnapshotsWgt.h \
507 include/VBoxVMLogViewer.h \
508 include/VBoxDiskImageManagerDlg.h \
509 include/VBoxVMSettingsUtils.h \
510 include/VBoxVMSettingsGeneral.h \
511 include/VBoxVMSettingsCD.h \
512 include/VBoxVMSettingsFD.h \
513 include/VBoxVMSettingsAudio.h \
514 include/VBoxVMSettingsNetwork.h \
515 include/VBoxVMSettingsSerial.h \
516 include/VBoxVMSettingsParallel.h \
517 include/VBoxVMSettingsUSB.h \
518 include/VBoxVMSettingsSF.h \
519 include/VBoxVMSettingsVRDP.h \
520 include/VBoxVMSettingsDlg.h
521
522# Sources containing local definitions of classes that use the Q_OBJECT macro
523VirtualBox_QT_MOCSRCS = src/VBoxSelectorWnd.cpp
524ifdef VBOX_WITH_XPCOM
525VirtualBox_QT_MOCSRCS += src/COMDefs.cpp
526endif
527
528# All generated sources. Note: this list MUST be in sync with Qt source
529# generation rules defined somewhere below!
530VirtualBox_GENSRCS = \
531 $(foreach moc,$(notdir $(basename $(VirtualBox_QT_MOCHDRS))), $(PATH_VirtualBox)/moc/moc_$(moc).cpp) \
532 $(foreach ui,$(notdir $(basename $(VirtualBox_QT_UISRCS3))), $(PATH_VirtualBox)/ui/$(ui).cpp $(PATH_VirtualBox)/moc/moc_$(ui).cpp)
533
534# All generated headers. Note: this list MUST be in sync with Qt source
535# generation rules defined somewhere below!
536VirtualBox_GENHDRS = \
537 $(foreach moc,$(notdir $(basename $(VirtualBox_QT_MOCSRCS))), $(PATH_VirtualBox)/moc/$(moc).moc) \
538 $(foreach ui,$(notdir $(basename $(VirtualBox_QT_UISRCS3))), $(PATH_VirtualBox)/ui/$(ui).h) \
539 $(foreach ui,$(notdir $(basename $(VirtualBox_QT_UISRCS4))), $(PATH_VirtualBox)/ui/$(ui).gen.h)
540
541# All existing .ui.h files for known .ui sources
542VirtualBox_QT_UIHDRS = \
543 $(wildcard $(addsuffix .h,$(VirtualBox_QT_UISRCS3)))
544
545# All header files
546VirtualBox_HEADERS = \
547 $(wildcard include/*.h) \
548 $(VirtualBox_GENHDRS) \
549 $(VirtualBox_QT_UIHDRS)
550
551
552VirtualBox_SOURCES = \
553 $(VirtualBox_GENSRCS) \
554 src/main.cpp \
555 src/COMDefs.cpp \
556 src/QIWidgetValidator.cpp \
557 src/QIHotKeyEdit.cpp \
558 src/QIStateIndicator.cpp \
559 src/QIStatusBar.cpp \
560 src/QIMessageBox.cpp \
561 src/QILabel.cpp \
562 src/QIAbstractWizard.cpp \
563 src/QIDialog.cpp \
564 src/QIDialogButtonBox.cpp \
565 src/QIListView.cpp \
566 src/QITreeWidget.cpp \
567 src/QIMainDialog.cpp \
568 src/QILineEdit.cpp \
569 src/VBoxDefs.cpp \
570 src/VBoxGlobalSettings.cpp \
571 src/VBoxGlobal.cpp \
572 src/VBoxMediaComboBox.cpp \
573 src/VBoxProblemReporter.cpp \
574 src/VBoxSelectorWnd.cpp \
575 src/VBoxConsoleView.cpp \
576 src/VBoxConsoleWnd.cpp \
577 src/VBoxDownloaderWgt.cpp \
578 src/VBoxVMListView.cpp \
579 src/VBoxFrameBuffer.cpp \
580 src/HappyHttp.cpp \
581 src/VBoxNetworkFramework.cpp \
582 src/VBoxAboutDlg.cpp \
583 src/VBoxCloseVMDlg.cpp \
584 src/VBoxNewVMWzd.cpp \
585 src/VBoxNewHDWzd.cpp \
586 src/VBoxVMFirstRunWzd.cpp \
587 src/VBoxRegistrationDlg.cpp \
588 src/VBoxSnapshotDetailsDlg.cpp \
589 src/VBoxVMInformationDlg.cpp \
590 src/VBoxTakeSnapshotDlg.cpp \
591 src/VBoxSnapshotsWgt.cpp \
592 src/VBoxVMLogViewer.cpp \
593 src/VBoxDiskImageManagerDlg.cpp \
594 src/VBoxVMSettingsGeneral.cpp \
595 src/VBoxVMSettingsCD.cpp \
596 src/VBoxVMSettingsFD.cpp \
597 src/VBoxVMSettingsAudio.cpp \
598 src/VBoxVMSettingsNetwork.cpp \
599 src/VBoxVMSettingsSerial.cpp \
600 src/VBoxVMSettingsParallel.cpp \
601 src/VBoxVMSettingsUSB.cpp \
602 src/VBoxVMSettingsSF.cpp \
603 src/VBoxVMSettingsVRDP.cpp \
604 src/VBoxVMSettingsDlg.cpp
605
606ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
607ifndef VBOX_OSE
608VirtualBox_QT_MOCHDRS += \
609 include/VBoxLicenseViewer.h
610VirtualBox_SOURCES += \
611 src/VBoxLicenseViewer.cpp
612endif
613VirtualBox_SOURCES += \
614 src/linux/XKeyboard-new.cpp
615endif
616
617VirtualBox_SOURCES.win += \
618 src/VBoxFBDDRAW.cpp \
619 $(PATH_TARGET)/VirtualBox4.rc
620
621VirtualBox_SOURCES.darwin = \
622 src/darwin/DarwinKeyboard.cpp \
623 src/darwin/DarwinCursor.cpp \
624 src/darwin/VBoxUtils-darwin.cpp \
625 src/VBoxFBQuartz2D.cpp
626# src/darwin/VBoxAquaStyle.cpp \
627
628ifdef VBOX_WITH_ICHAT_THEATER
629 VirtualBox_SOURCES.darwin += \
630 src/darwin/VBoxIChatTheaterWrapper.m
631endif
632
633ifneq ($(KBUILD_TARGET),win)
634src/HappyHttp.cpp_CXXFLAGS += -fexceptions
635src/VBoxDownloaderWgt.cpp_CXXFLAGS += -fexceptions
636src/VBoxNetworkFramework.cpp_CXXFLAGS += -fexceptions
637endif
638src/HappyHttp.cpp_CXXFLAGS.linux += -O2
639
640## @todo how to detect what tool is used?
641## @todo GCC3 seems to lack -Wno-missing-base-class-initializer, so we use
642# more generic -Wno-extra
643ifdef VBOX_WITH_XPCOM
644src/COMDefs.cpp_CXXFLAGS = $(VBOX_GCC_Wno-extra)
645endif
646
647VirtualBox_DEFS = VBOX_GUI_SEPARATE_VM_PROCESS
648VirtualBox_DEFS.debug = VBOX_GUI_DEBUG VBOX_CHECK_STATE # QT_FATAL_ASSERT
649VirtualBox_DEFS.darwin = VBOX_GUI_USE_QUARTZ2D VBOX_GUI_USE_QIMAGE VBOX_WITHOUT_QHTTP
650VirtualBox_DEFS.freebsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
651VirtualBox_DEFS.linux = VBOX_GUI_USE_SDL
652VirtualBox_DEFS.netbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
653VirtualBox_DEFS.openbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
654VirtualBox_DEFS.os2 = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL QT_DLL
655VirtualBox_DEFS.solaris = VBOX_GUI_USE_QIMAGE #VBOX_GUI_USE_SDL
656VirtualBox_DEFS.win = VBOX_GUI_USE_QIMAGE UNICODE QT_DLL
657VirtualBox_DEFS.win.amd64 = VBOX_WITHOUT_QHTTP
658#ifndef VBOX_OSE
659 VirtualBox_DEFS.darwin += VBOX_WITH_HACKED_QT
660#endif
661ifdef VBOX_WITH_ICHAT_THEATER
662 VirtualBox_DEFS.darwin += VBOX_WITH_ICHAT_THEATER
663endif
664ifneq ($(KBUILD_TYPE),release)
665 # non-release builds has some extra features.
666 VirtualBox_DEFS.win += VBOX_GUI_USE_DDRAW
667 VirtualBox_DEFS.linux += VBOX_GUI_USE_QIMAGE
668endif
669ifdef VBOX_WITH_REGISTRATION
670 VirtualBox_DEFS += VBOX_WITH_REGISTRATION
671endif
672ifdef VBOX_WITH_REGISTRATION_REQUEST
673 VirtualBox_DEFS += VBOX_WITH_REGISTRATION_REQUEST
674endif
675ifdef VBOX_WITH_ALSA
676 VirtualBox_DEFS += VBOX_WITH_ALSA
677endif
678ifdef VBOX_WITH_PULSE
679 VirtualBox_DEFS += VBOX_WITH_PULSE
680endif
681ifdef VBOX_WITH_E1000
682 VirtualBox_DEFS += VBOX_WITH_E1000
683endif
684ifdef VBOX_OSE
685 VirtualBox_DEFS += VBOX_OSE
686endif
687ifdef VBOX_WITH_DEBUGGER_GUI
688 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI_MENU
689endif
690
691VirtualBox_INCS = \
692 ./include \
693 $(PATH_VirtualBox)/ui \
694 $(PATH_VirtualBox)/moc \
695 $(PATH_VirtualBox)/include \
696
697
698ifeq ($(KBUILD_TYPE),release)
699 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
700else
701 VirtualBox_LDFLAGS.linux+= -rdynamic # for backtrace_symbols()
702 ifeq ($(USERNAME),dmik)
703 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
704 else
705 VirtualBox_LDFLAGS.win += /SUBSYSTEM:console
706 endif
707endif
708VirtualBox_LDFLAGS.os2 = -Zlinker /PM:PM -Zno-fork
709VirtualBox_LDFLAGS.darwin = -framework IOKit -framework AppKit -framework ApplicationServices -framework Foundation -lz
710ifdef VBOX_WITH_ICHAT_THEATER
711 VirtualBox_LDFLAGS.darwin += -framework InstantMessage -framework QuartzCore
712endif
713VirtualBox_LIBS.win = \
714 $(PATH_SDK_WINPSDK_LIB)/Htmlhelp.Lib \
715 $(PATH_SDK_DXSDK_LIB)/ddraw.lib \
716 $(PATH_SDK_DXSDK_LIB)/dxguid.lib
717VirtualBox_LIBS.os2 += $(PATH_DLL)/VBoxHlp$(VBOX_SUFF_DLL)
718ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
719VirtualBox_LIBS += $(PATH_DLL)/VBoxKeyboard4$(VBOX_SUFF_DLL)
720endif
721
722
723ifdef VBOX_WITH_DEBUGGER_GUI ## @todo make this dynamically loadable and ship with release builds too.
724 ifeq ($(KBUILD_TARGET),win)
725 VirtualBox_LIBS += $(PATH_LIB)/VBoxDbg$(VBOX_SUFF_LIB)
726 else
727 VirtualBox_LIBS += $(PATH_DLL)/VBoxDbg$(VBOX_SUFF_DLL)
728 endif
729endif
730
731WRAPPERSFILE = $(PATH_VirtualBox)/include/COMWrappers.h
732WRAPPERSINCFILE = include/COMDefs.h
733WRAPPERSTEMPLATE = include/COMWrappers.xsl
734XIDLFILE = ../../Main/idl/VirtualBox.xidl
735
736VirtualBox_INTERMEDIATES = $(WRAPPERSFILE)
737
738
739# generated files we need to clean manually
740OTHER_CLEAN = \
741 $(VirtualBox_GENSRCS) \
742 $(VirtualBox_GENHDRS) \
743 $(WRAPPERSFILE) \
744 $(PATH_BIN)/vboxkeyboard.tar.gz
745
746#
747# On Windows we'll have to generate/edit the resource file.
748# The IDI_ICON1 name is Qt specific.
749#
750$(PATH_TARGET)/VirtualBox4.rc: Makefile.kmk $(VBOX_WINDOWS_ICON_FILE) | $$(call DIRDEP,$$(@D))
751 $(RM) -f $@
752 $(APPEND) $@ 'IDI_ICON1 ICON "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
753 $(CAT) $@
754
755OTHER_CLEAN.win += $(PATH_TARGET)/VirtualBox4.rc
756
757
758#
759# On Mac OS X (darwin) we need to install icon resources and compusory bundle contents.
760#
761INSTALLS.darwin += VirtualBox.app
762VirtualBox.app_INST = $(INST_VIRTUALBOX)Contents/
763VirtualBox.app_MODE = 644
764VirtualBox.app_SOURCES = \
765 src/darwin/PkgInfo \
766 $(PATH_TARGET)/Info.plist \
767 $(VBOX_MACOSX_ICON_FILE)=>Resources/virtualbox.icns
768
769$(PATH_TARGET)/Info.plist: src/darwin/Info.plist $(VBOX_VERSION_MK) | $(call DIRDEP,$(PATH_TARGET))
770 $(call MSG_GENERATE,VirtualBox.app,$<,$@)
771 $(QUIET)$(RM) -f $@
772 $(QUIET)$(SED) \
773 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
774 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
775 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
776 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
777 $< > $@
778
779INSTALLS.darwin += VirtualBoxVM.app
780VirtualBoxVM.app_INST = $(VirtualBox.app_INST)Resources/VirtualBoxVM.app/Contents/
781VirtualBoxVM.app_MODE = 644
782VirtualBoxVM.app_SOURCES = \
783 src/darwin/VM-PkgInfo=>PkgInfo \
784 $(PATH_TARGET)/VM-Info.plist=>Info.plist \
785 $(VBOX_MACOSX_ICON_FILE)=>Resources/virtualbox.icns
786VirtualBoxVM.app_SYMLINKS = \
787 MacOS=>../../../MacOS/
788
789$(PATH_TARGET)/VM-Info.plist: src/darwin/VM-Info.plist $(VBOX_VERSION_MK) | $(call DIRDEP,$(PATH_TARGET))
790 $(call MSG_GENERATE,VirtualBoxVM.app,$<,$@)
791 $(QUIET)$(RM) -f $@
792 $(QUIET)$(SED) \
793 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
794 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
795 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
796 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
797 --output $@ $<
798
799#
800# Translation installation
801#
802VirtualBox.nls_INST = $(INST_BIN)nls4/
803VirtualBox.nls_SOURCES = $(patsubst %.ts,$(PATH_VirtualBox)/nls/%.qm,$(notdir $(VirtualBox_QT_TRANSLATIONS)))
804VirtualBox.nls_SOURCES += $(patsubst %.ts,$(PATH_VirtualBox)/nls/%.qm,$(notdir $(VirtualBox_QT_TRANSLATIONS_QT)))
805VirtualBox.nls_MODE = 644
806
807
808#
809# Testcase for the darwin keyboard routines.
810#
811ifdef VBOX_WITH_TESTCASES
812PROGRAMS.darwin += tstDarwinKeyboard4
813tstDarwinKeyboard4_TEMPLATE = VBOXR3TSTEXE
814tstDarwinKeyboard4_INCS = include
815tstDarwinKeyboard4_SOURCES = \
816 src/darwin/tstDarwinKeyboard.cpp \
817 src/darwin/DarwinKeyboard.cpp
818tstDarwinKeyboard4_LDFLAGS = -framework IOKit -framework Carbon
819tstDarwinKeyboard4_LIBS = \
820 $(LIB_RUNTIME)
821endif
822
823# grep the images out of the resource file for dependency tracking
824VirtualBox_QT_RC += $(shell $(SED) '/images/!d;{s/^.*\(images\/.*\)<.*$$/\1/}' VirtualBox.qrc)
825VirtualBox_GENSRCS += $(PATH_VirtualBox)/ui/qrc_application.cpp
826
827# We have different about dialogs in OSE and PUEL. Therefor two independent
828# resource files exists.
829ifdef VBOX_OSE
830VirtualBox_QT_RC_OSE += $(shell $(SED) '/images/!d;{s/^.*\(images\/.*\)<.*$$/\1/}' VirtualBox_OSE.qrc)
831VirtualBox_GENSRCS += $(PATH_VirtualBox)/ui/qrc_application_ose.cpp
832else
833VirtualBox_QT_RC_NON_OSE += $(shell $(SED) '/images/!d;{s/^.*\(images\/.*\)<.*$$/\1/}' VirtualBox_NonOSE.qrc)
834VirtualBox_GENSRCS += $(PATH_VirtualBox)/ui/qrc_application_non_ose.cpp
835VirtualBox_SOURCES += src/VBoxAboutNonOSEDlg.cpp
836VirtualBox_QT_MOCHDRS += include/VBoxAboutNonOSEDlg.h
837endif
838
839# OSE version is always necessary for lupdate/lrelease
840VirtualBox_QT_UISRCS4 += ui/VBoxAboutDlg.ui
841
842# Commit the magic.
843# (note: before custom rules that make usage of generated variables!).
844include $(KBUILD_PATH)/footer.kmk
845
846
847#
848# Qt source file generation rules
849#
850
851## @todo move QT source generation macros to kBuild
852
853## Generate a rule to create a MOC source file from a header containing
854# classes that use the Q_OBJECT macro.
855# @param $mochdr header file with Q_OBJECT
856define def_qt_gen_src_moc
857
858$(eval mocsrc := $(PATH_$(target))/moc/moc_$(notdir $(basename $(mochdr))).cpp)
859
860$(target)_GENSRCS_REAL += $(mocsrc)
861## @todo The source should be added to GEN_SOURCES: $ (target)_GEN_SOURCES += $ (mocsrc)
862
863$(mocsrc): $(mochdr)
864 $$(call MSG_TOOL,moc,$(target),$(mochdr),$$@)
865 $$(QUIET)$$(MKDIR) -p $$(@D)
866 $$(QUIET)$$(VBOX_MOC4) \
867 $(addprefix -D,$($(target)_DEFS)) \
868 $(addprefix -I,$($(target)_INCS)) \
869 $(mochdr) -o $$@
870
871endef
872
873## Generate a rule to create a MOC include file from a source containing
874# local classes that use the Q_OBJECT macro. This include is then included
875# by that source, so it must be generated before the source gets compiled.
876# @param $mocsrc source file with Q_OBJECT
877define def_qt_gen_inc_moc
878
879$(eval mocobj := $(PATH_$(target)_$(mocsrc))/$(notdir $(basename $(mocsrc)))$(VBOX_SUFF_OBJ))
880$(eval mocinc := $(PATH_$(target))/moc/$(notdir $(basename $(mocsrc))).moc)
881
882$(target)_GENHDRS_REAL += $(mocinc)
883$(target)_INTERMEDIATES += $(mocinc)
884
885$(mocobj): $(mocinc)
886
887$(mocinc): $(mocsrc)
888 $$(call MSG_TOOL,moc,$(target),$(mocsrc),$$@)
889 $$(QUIET)$$(MKDIR) -p $$(@D)
890 $$(QUIET)$$(VBOX_MOC4) \
891 $(addprefix -D,$($(target)_DEFS)) \
892 $(addprefix -I,$($(target)_INCS)) \
893 -i $(mocsrc) -o $$@
894
895endef
896
897## Generate a rule to create a MOC include file from a UI header (ui.h) containing
898# local classes that use the Q_OBJECT macro. This include is then included
899# by that header, so it must be generated before the UI source gets compiled.
900# @param $mocuihdr UI header file with Q_OBJECT
901define def_qt_gen_inc_mocuihdr
902
903$(eval uisrc := $(PATH_$(target))/ui/$(notdir $(basename $(basename $(mocuihdr)))).cpp)
904$(eval uiobj := $(PATH_$(target)_$$(uisrc))/$(notdir $(basename $$(uisrc)))$(VBOX_SUFF_OBJ))
905$(eval mocuiinc := $(PATH_$(target))/moc/$(notdir $(basename $(mocuihdr))).moc)
906
907$(target)_GENHDRS_REAL += $(mocuiinc)
908$(target)_INTERMEDIATES += $(mocuiinc)
909
910$(uisrc): $(mocuiinc)
911$(mocuiinc): $(mocuihdr)
912 $$(call MSG_TOOL,moc,$(target),$(mocuihdr),$$@)
913 $$(QUIET)$$(MKDIR) -p $$(@D)
914 $$(QUIET)$$(VBOX_MOC4) \
915 $(addprefix -D,$($(target)_DEFS)) \
916 $(addprefix -I,$($(target)_INCS)) \
917 -i $(mocuihdr) -o $$@
918
919endef
920
921## Generate a rule to create a header and source files from an UI3
922# definition source (.ui).
923# @param $uifile UI definintion source file
924define def_qt_gen_src_ui3
925
926$(eval uisrc := $(PATH_$(target))/ui/$(notdir $(basename $(uifile))).cpp)
927$(eval uihdr := $(PATH_$(target))/ui/$(notdir $(basename $(uifile))).h)
928$(eval mocsrc := $(PATH_$(target))/moc/moc_$(notdir $(basename $(uifile))).cpp)
929
930
931$(target)_GENSRCS_REAL += $(uisrc) $(mocsrc)
932$(target)_GENHDRS_REAL += $(uihdr)
933$(target)_INTERMEDIATES += $(uihdr)
934## @todo The source should be added to GEN_SOURCES: $ (target)_GEN_SOURCES += $ (uisrc) $ (mocsrc)
935
936$(uihdr): $(uifile) | $$(call DIRDEP,$(dir $(uihdr)))
937 $$(call MSG_TOOL,uic,$(target),$(uifile),$$@)
938 $$(QUIET)$$(VBOX_UIC3) $(uifile) -o $$@
939
940$(uisrc): $(uihdr) $(uifile) $(wildcard $(uifile).h) | $$(call DIRDEP,$(dir $(uisrc)))
941 $$(call MSG_TOOL,uic,$(target),$(uifile),$$@)
942 $$(QUIET)$$(VBOX_UIC3) -impl $(uihdr) $(uifile) -o $$@
943
944#$$(QUIET)$$(VBOX_UIC3) $(uifile) -i $(uihdr) -o $$@
945
946$(mocsrc): $(uihdr) | $$(call DIRDEP,$(dir $(mocsrc)))
947 $$(call MSG_TOOL,moc,$(target),$(uihdr),$$@)
948 $$(QUIET)$$(VBOX_MOC4) \
949 $(addprefix -D,$($(target)_DEFS)) \
950 $(addprefix -I,$($(target)_INCS)) \
951 $(uihdr) -o $$@
952
953endef
954
955## Generate a rule to create a header file from an UI4
956# definition source (.ui).
957# @param $uifile UI definintion source file
958define def_qt_gen_src_ui4
959
960$(eval uihdr := $(PATH_$(target))/ui/$(notdir $(basename $(uifile))).gen.h)
961
962$(target)_GENHDRS_REAL += $(uihdr)
963$(target)_INTERMEDIATES += $(uihdr)
964
965$(uihdr): $(uifile) | $$(call DIRDEP,$(dir $(uihdr)))
966 $$(call MSG_TOOL,uic,$(target),$(uifile),$$@)
967 $$(QUIET)$$(VBOX_UIC4) $(uifile) -o $$@
968
969# we assume that the generated header is at least included by
970# the normal header with the same name
971include/$(notdir $(basename $(uifile))).h: $(uihdr)
972
973endef
974
975## Generate a rule to create a .qm file from a NLS translation
976# source (.ts).
977# @param $tsfile Translation source file
978define def_qt_gen_nls
979
980$(eval qmfile := $(PATH_$(target))/nls/$(notdir $(basename $(tsfile))).qm)
981
982OTHER_CLEAN += $(qmfile)
983
984# Note that we use -nocompress in lrelease to avoid stripping comments and
985# other information from .qm files. If we don't do that, we get .qm files two
986# times smaller, but QTranslator::findMessage() will start searching for
987# translations in all existing contexts in case if it cannot find it in the
988# original context (which is of course not acceptable, no matter if it's a
989# special Qt "feature" or just a bug).
990
991$(qmfile): $(tsfile) | $$(call DIRDEP,$(dir $(qmfile)))
992 $$(call MSG_TOOLS,lrelease,$(target),$(tsfile),$$@)
993 $$(QUIET)$$(VBOX_LRELEASE4) -nocompress $(tsfile) -qm $$@
994
995endef
996
997## Generate rules for generating the Qt source for a target.
998# @param $target Target name.
999define def_qt_gen_src
1000
1001# moc srcs from hdrs with Q_OBJECT
1002$(foreach mochdr,$($(target)_QT_MOCHDRS),$(eval $(def_qt_gen_src_moc)))
1003# moc includes from srcs with Q_OBJECT
1004$(foreach mocsrc,$($(target)_QT_MOCSRCS),$(eval $(def_qt_gen_inc_moc)))
1005# moc includes from UI headers with Q_OBJECT
1006$(foreach mocuihdr,$($(target)_QT_MOCUIHDRS),$(eval $(def_qt_gen_inc_mocuihdr)))
1007# UI3 sources
1008$(foreach uifile,$($(target)_QT_UISRCS3),$(eval $(def_qt_gen_src_ui3)))
1009# UI4 sources
1010$(foreach uifile,$($(target)_QT_UISRCS4),$(eval $(def_qt_gen_src_ui4)))
1011# NLS files
1012$(foreach tsfile,$($(target)_QT_TRANSLATIONS),$(eval $(def_qt_gen_nls)))
1013$(foreach tsfile,$($(target)_QT_TRANSLATIONS_QT),$(eval $(def_qt_gen_nls)))
1014# dirs
1015$$(call DIRDEP,$(PATH_$(target))/ui/) \
1016$$(call DIRDEP,$(PATH_$(target))/moc/) \
1017$$(call DIRDEP,$(PATH_$(target))/nls/):
1018 $$(call MSG_MKDIR,$$@)
1019 $$(QUIET)$$(MKDIR) -p $$@
1020
1021endef
1022
1023# Generate Qt source rules.
1024$(foreach target,VirtualBox,$(eval $(def_qt_gen_src)))
1025
1026
1027# Generate COM Wrappers
1028$(WRAPPERSINCFILE): $(WRAPPERSFILE)
1029
1030$(WRAPPERSFILE): $(XIDLFILE) $(WRAPPERSTEMPLATE) | $(call DIRDEP,$(PATH_VirtualBox)/include/)
1031 $(call MSG_TOOL,xsltproc,VirtualBox,$<,$@)
1032 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(WRAPPERSTEMPLATE) $<
1033
1034$(call DIRDEP,$(PATH_VirtualBox)/include/):
1035 $(call MSG_MKDIR,$@)
1036 $(QUIET)$(MKDIR) -p $@
1037
1038# rules for resources file creation
1039$(PATH_VirtualBox)/ui/qrc_application.cpp: VirtualBox.qrc $(VirtualBox_QT_RC)
1040 $(call MSG_TOOL,rcc,VirtualBox,$<,$@)
1041 $(QUIET)$(VBOX_RCC4) -o $@ $<
1042
1043$(PATH_VirtualBox)/ui/qrc_application_ose.cpp: VirtualBox_OSE.qrc $(VirtualBox_QT_RC_OSE)
1044 $(call MSG_TOOL,rcc,VirtualBox,$<,$@)
1045 $(QUIET)$(VBOX_RCC4) -name "OSE" -o $@ $<
1046
1047$(PATH_VirtualBox)/ui/qrc_application_non_ose.cpp: VirtualBox_NonOSE.qrc $(VirtualBox_QT_RC_NON_OSE)
1048 $(call MSG_TOOL,rcc,VirtualBox,$<,$@)
1049 $(QUIET)$(VBOX_RCC4) -name "NonOSE" -o $@ $<
1050
1051#
1052# Hand made dependencies go here.
1053# Basically, here are dependencies for generated UI source files that
1054# include generated headers in turn.
1055#
1056
1057# Make all generated UI sources dependent on all generated headers (since they
1058# may include them). This is safer than indifidual dependencies above but
1059# currently disabled, because will cause all UI sources to be rebuilt one a
1060# single one changes.
1061#$(patsubst %,$(PATH_VirtualBox)/ui/%.cpp,$(notdir $(basename $(VirtualBox_QT_UISRCS3)))) : $(VirtualBox_GENHDRS)
1062
1063
1064#
1065# Custom targets
1066#
1067
1068# Update all known NLS translation (.ts) files in the nls/ subdirectory.
1069# NOTE: This target is intened to be run only by the GUI maintainer shortly
1070# before a new product release. VirtualBox_xx_YY.ts is a template for new
1071# languages and should never be actually translated or installed.
1072updatenls: $(VirtualBox_SOURCES) $(VirtualBox_HEADERS)
1073 $(call MSG_L1,lupdate all languages (nls/*.ts))
1074 $(QUIET)$(VBOX_LUPDATE4) $^ -ts $(VirtualBox_QT_TRANSLATIONS) nls/VirtualBox_xx_YY.ts
1075
1076
1077#
1078# Test targets
1079#
1080
1081test:
1082 @echo ====================
1083 @echo $(VirtualBox_GENSRCS) | $(SED) -e "s/ /\n/g"
1084 @echo --------------------
1085 @echo $(VirtualBox_GENSRCS_REAL) | $(SED) -e "s/ /\n/g"
1086 @echo ====================
1087 @echo $(VirtualBox_GENHDRS) | $(SED) -e "s/ /\n/g"
1088 @echo --------------------
1089 @echo $(VirtualBox_GENHDRS_REAL) | $(SED) -e "s/ /\n/g"
1090 @echo ====================
1091
1092test2:
1093 @echo $(OTHER_CLEAN) | $(SED) -e "s/ /\n/g"
1094
1095test3:
1096 @echo $(VirtualBox_HEADERS) | $(SED) -e "s/ /\n/g"
1097
1098testwrappers: $(WRAPPERSFILE)
1099
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette