VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk@ 63932

Last change on this file since 63932 was 63932, checked in by vboxsync, 8 years ago

VirtualBox/Makefile.kmk: precompiled headers for windows (disabled atm, requires updated kBuild).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 50.1 KB
Line 
1# $Id: Makefile.kmk 63932 2016-09-21 19:38:37Z vboxsync $
2## @file
3# Makefile for the VirtualBox Qt GUI.
4#
5
6#
7# Copyright (C) 2006-2016 Oracle Corporation
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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# Globals.
23#
24VBOX_VIRTUALBOX4_SRC := $(PATH_SUB_CURRENT)
25VBOX_VIRTUALBOX4_OUT_DIR := $(PATH_TARGET)/VirtualBox/misc
26
27# Show the update notifier dialog during startup. If this setting is disabled
28# the user can still update using the menu if desired.
29ifndef VBOX_OSE
30VBOX_WITH_UPDATE_REQUEST := 1
31endif
32
33#
34# The targets.
35#
36ifdef VBOX_WITH_HARDENING
37PROGRAMS += VirtualBoxHardened
38PROGRAMS.darwin += VirtualBoxVM
39DLLS += VirtualBox
40else
41PROGRAMS += VirtualBox
42endif
43
44INSTALLS += VirtualBox.nls
45
46
47#
48# Include the language lists.
49#
50include $(PATH_SUB_CURRENT)/nls/ApprovedLanguages.kmk
51
52
53#
54# Hardened VirtualBox.
55#
56VirtualBoxHardened_TEMPLATE = VBOXR3HARDENEDEXE
57VirtualBoxHardened_SOURCES = src/hardenedmain.cpp
58VirtualBoxHardened_SOURCES.win = src/platform/win/VirtualBoxHardened.rc
59VirtualBoxHardened_NAME = VirtualBox
60VirtualBoxHardened_LDFLAGS.win = /SUBSYSTEM:$(if-expr "$(KBUILD_TYPE)" != "release",console,windows)
61src/platform/win/VirtualBoxHardened.rc_INCS = $(VirtualBox_0_OUTDIR)
62src/platform/win/VirtualBoxHardened.rc_DEPS = $(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc
63
64
65#
66# Hardened VirtualBoxVM.
67#
68ifeq ($(KBUILD_TARGET),darwin)
69 VirtualBoxVM_EXTENDS = VirtualBoxHardened
70 VirtualBoxVM_NAME = VirtualBoxVM
71 VirtualBoxVM_DEFS = $(VirtualBoxHardened_DEFS) VIRTUALBOX_VM
72endif
73
74
75#
76# Include Qt project file, we'll use FORMS and TRANSLATIONS in
77# the VirtualBox setup below.
78#
79# This is a bit messy. We boldly ASSUME that LANGUAGE, IMAGES, FORMS
80# and TRANSLATIONS are all unused by kBuild and the host toolchain.
81#
82SAVED_TEMPLATE := $(TEMPLATE)
83include $(PATH_SUB_CURRENT)/VBoxUI.pro
84TEMPLATE := $(SAVED_TEMPLATE)
85SAVED_TEMPLATE :=
86LANGUAGE :=
87IMAGES :=
88# FORMS and TRANSLATIONS are reset further down.
89
90
91#
92# VirtualBox - The GUI program.
93#
94ifndef VBOX_WITH_QTGUI_V5
95 USES += qt4
96else # VBOX_WITH_QTGUI_V5
97 USES += qt5
98endif # VBOX_WITH_QTGUI_V5
99VirtualBox_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXQTGUI,VBOXQTGUIEXE)
100VirtualBox_NAME = VirtualBox
101ifndef VBOX_WITH_HARDENING # For the launch trick we need different inode numbers.
102 VirtualBox_INST.darwin = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
103endif
104VirtualBox_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK)
105
106VirtualBox_DEFS =
107VirtualBox_DEFS.debug = VBOX_CHECK_STATE # QT_FATAL_ASSERT
108VirtualBox_DEFS.linux = VBOX_WITH_MASKED_SEAMLESS VBOX_WITH_TRANSLUCENT_SEAMLESS
109VirtualBox_DEFS.solaris = VBOX_WITH_MASKED_SEAMLESS VBOX_WITH_TRANSLUCENT_SEAMLESS
110VirtualBox_DEFS.freebsd = VBOX_WITH_MASKED_SEAMLESS VBOX_WITH_TRANSLUCENT_SEAMLESS
111VirtualBox_DEFS.darwin = VBOX_WITH_TRANSLUCENT_SEAMLESS # VBOX_WITH_MASKED_SEAMLESS
112VirtualBox_DEFS.win = VBOX_WITH_MASKED_SEAMLESS # VBOX_WITH_TRANSLUCENT_SEAMLESS
113VirtualBox_DEFS.win += UNICODE QT_DLL
114ifdef VBOX_WITH_ICHAT_THEATER
115 VirtualBox_DEFS.darwin += VBOX_WITH_ICHAT_THEATER
116endif
117VirtualBox_DEFS.linux += VBOX_WS_X11
118VirtualBox_DEFS.solaris += VBOX_WS_X11
119VirtualBox_DEFS.freebsd += VBOX_WS_X11
120VirtualBox_DEFS.darwin += VBOX_WS_MAC
121VirtualBox_DEFS.win += VBOX_WS_WIN
122VirtualBox_DEFS += \
123 $(if $(VBOX_WITH_ADDITIONS_AUTOUPDATE_UI),VBOX_WITH_ADDITIONS_AUTOUPDATE_UI) \
124 $(if $(VBOX_WITH_UPDATE_REQUEST),VBOX_WITH_UPDATE_REQUEST) \
125 $(if $(VBOX_WITH_AUDIO_OSS),VBOX_WITH_AUDIO_OSS) \
126 $(if $(VBOX_WITH_AUDIO_ALSA),VBOX_WITH_AUDIO_ALSA) \
127 $(if $(VBOX_WITH_AUDIO_PULSE),VBOX_WITH_AUDIO_PULSE) \
128 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
129 $(if $(VBOX_WITH_NETFLT)$(eq $(KBUILD_TARGET),freebsd),VBOX_WITH_NETFLT) \
130 $(if $(VBOX_WITH_VDE),VBOX_WITH_VDE) \
131 $(if $(VBOX_WITH_UDPTUNNEL),VBOX_WITH_UDPTUNNEL) \
132 $(if $(VBOX_WITH_EXTPACK),VBOX_WITH_EXTPACK) \
133 $(if $(VBOX_WITH_EHCI),VBOX_WITH_EHCI) \
134 $(if $(VBOX_WITH_HARDENING),VBOXR3_HARDENED_DLL) \
135 $(if $(VBOX_WITH_DRAG_AND_DROP),VBOX_WITH_DRAG_AND_DROP) \
136 $(if $(VBOX_WITH_DRAG_AND_DROP_GH),VBOX_WITH_DRAG_AND_DROP_GH) \
137 $(if $(VBOX_WITH_DRAG_AND_DROP_PROMISES),VBOX_WITH_DRAG_AND_DROP_PROMISES) \
138 $(if $(VBOX_WITH_CRHGSMI),VBOX_WITH_CRHGSMI) \
139 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO) \
140 $(if $(VBOX_WITH_WDDM),VBOX_WITH_WDDM) \
141 $(if $(VBOX_WITH_CROGL),VBOX_WITH_CROGL) \
142 $(if $(VBOX_GUI_WITH_HIDPI),VBOX_GUI_WITH_HIDPI) \
143 $(if $(VBOX_GUI_WITH_PIDFILE),VBOX_GUI_WITH_PIDFILE) \
144 $(if $(VBOX_GUI_WITH_KEYS_RESET_HANDLER),VBOX_GUI_WITH_KEYS_RESET_HANDLER) \
145 $(if $(VBOX_GUI_WITH_CUSTOMIZATIONS1),VBOX_GUI_WITH_CUSTOMIZATIONS1) \
146 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE)
147ifdef VBOX_WITH_DEBUGGER_GUI
148 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI
149 if "$(KBUILD_TYPE)" != "release"
150 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI_MENU
151 endif
152endif
153ifdef VBOX_WITH_VIDEOHWACCEL
154 VirtualBox_DEFS += VBOX_WITH_VIDEOHWACCEL \
155 VBOX_GUI_USE_QGL
156else ifdef VBOX_GUI_USE_QGL
157 VirtualBox_DEFS += VBOX_GUI_USE_QGL
158endif
159ifdef VBOX_WITH_LIBCURL
160 VirtualBox_DEFS += VBOX_GUI_WITH_NETWORK_MANAGER
161 VBOX_GUI_WITH_NETWORK_MANAGER := 1
162endif
163ifneq ($(KBUILD_TYPE),release)
164 VirtualBox_DEFS += VBOX_GUI_WITH_EXTRADATA_MANAGER_UI
165endif
166ifdef VBOX_BLEEDING_EDGE
167VirtualBox_src/selector/UISelectorWindow.cpp_DEFS += \
168 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
169VirtualBox_src/runtime/UIMachineWindow.cpp_DEFS += \
170 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
171VirtualBox_src/VBoxAboutDlg.cpp_DEFS += \
172 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
173VirtualBox_src/main.cpp_DEFS += \
174 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
175endif
176
177
178
179VBOX_GUI_INC_DIRS = \
180 ./src \
181 ./src/converter \
182 ./src/extensions \
183 ./src/extensions/graphics \
184 ./src/extradata \
185 ./src/globals \
186 ./src/medium \
187 ./src/objects \
188 ./src/platform \
189 ./src/platform/darwin \
190 ./src/platform/win \
191 ./src/platform/x11 \
192 ./src/runtime \
193 ./src/runtime/fullscreen \
194 ./src/runtime/normal \
195 ./src/runtime/scale \
196 ./src/runtime/seamless \
197 ./src/runtime/information \
198 ./src/selector \
199 ./src/selector/graphics/chooser \
200 ./src/selector/graphics/details \
201 ./src/settings \
202 ./src/settings/global \
203 ./src/settings/machine \
204 ./src/widgets \
205 ./src/widgets/graphics \
206 ./src/wizards \
207 ./src/wizards/newvm \
208 ./src/wizards/newvd \
209 ./src/wizards/clonevm \
210 ./src/wizards/clonevd \
211 ./src/wizards/exportappliance \
212 ./src/wizards/importappliance \
213 ./src/wizards/firstrun
214
215ifdef VBOX_GUI_WITH_NETWORK_MANAGER
216VBOX_GUI_INC_DIRS += \
217 ./src/net
218endif
219
220VirtualBox_INCS = \
221 $(VBOX_GUI_INC_DIRS) \
222 $(VirtualBox_0_OUTDIR)/include
223
224# Necessary for the hdd backend enumeration
225VirtualBox_LIBS = $(LIB_DDU)
226
227if1of ($(KBUILD_TARGET), linux netbsd openbsd)
228 VirtualBox_LIBS += dl
229endif
230
231# This library is required for multi-monitor support
232VirtualBox_LIBS.linux += Xinerama
233VirtualBox_LIBS.solaris += Xinerama
234VirtualBox_LIBS.freebsd += Xinerama
235
236ifdef VBOX_WITH_QTGUI_V5
237 # No Qt5 without Xcb under X11:
238 VirtualBox_LIBS.linux += xcb
239 VirtualBox_LIBS.solaris += xcb
240 VirtualBox_LIBS.freebsd += xcb
241endif # VBOX_WITH_QTGUI_V5
242
243ifneq ($(KBUILD_TARGET),win)
244VirtualBox_CXXFLAGS += -Wno-switch
245endif
246
247## @todo we're using a number of deprecated APIs, please fix and remove these!
248ifdef VBOX_WITH_NEW_XCODE
249 VirtualBox_CXXFLAGS.darwin += -Wno-error=deprecated-declarations
250 VirtualBox_OBJCFLAGS.darwin += -Wno-error=deprecated-declarations
251 VirtualBox_OBJCXXFLAGS.darwin += -Wno-error=deprecated-declarations
252else
253 VirtualBox_CXXFLAGS.darwin += -Wno-deprecated-declarations
254 VirtualBox_OBJCFLAGS.darwin += -Wno-deprecated-declarations
255 VirtualBox_OBJCXXFLAGS.darwin += -Wno-deprecated-declarations
256endif
257
258ifeq ($(KBUILD_TYPE),release)
259 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
260else
261 VirtualBox_LDFLAGS.linux += -rdynamic # for backtrace_symbols()
262 VirtualBox_LDFLAGS.win += /SUBSYSTEM:console
263endif
264
265# delay loading causes VM process crashes due to the misbehave of the current QtOpenGLVBox4.dll we use
266# (i.e. it does not create the ogl context properly when loaded this way)
267#
268# @todo: investigate a better work-around and enable back delay loading since it is needed to avoid
269# crashes caused by buggy ogl drivers for the case 2D is not used (i.e. no ogl stuff loaded)
270#if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
271# VirtualBox_LDFLAGS.win += /DelayLoad:QtOpenGLVBox4.dll /DelayLoad:OPENGL32.dll
272#endif
273
274VirtualBox_LDFLAGS.darwin = \
275 -framework AppKit -framework Carbon -framework IOKit \
276 $(if $(VBOX_WITH_HARDENING),-install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VirtualBox.dylib)
277ifdef VBOX_WITH_ICHAT_THEATER
278 VirtualBox_LDFLAGS.darwin += -framework InstantMessage -framework QuartzCore
279endif
280
281VirtualBox_LIBS.win = \
282 $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Htmlhelp.Lib \
283 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/ddraw.lib \
284 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/dxguid.lib
285if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X11
286 VirtualBox_LIBS += $(PATH_STAGE_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL)
287endif
288
289if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
290 VirtualBox_LIBS.win += $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Opengl32.lib
291 VirtualBox_LIBS.solaris += GL
292 VirtualBox_LIBS.linux += GL
293 VirtualBox_LIBS.freebsd += GL
294 VirtualBox_LDFLAGS.darwin += -framework OpenGL
295endif
296ifdef VBOX_WITH_CROGL
297 VirtualBox_LIBS += $(PATH_STAGE_LIB)/VBoxOGLTest$(VBOX_SUFF_LIB)
298endif
299
300
301# Headers containing definitions of classes that use the Q_OBJECT macro.
302VirtualBox_QT_MOCHDRS = \
303 src/UIMediumTypeChangeDialog.h \
304 src/VBoxAboutDlg.h \
305 src/VBoxGlobalSettings.h \
306 src/VBoxLicenseViewer.h \
307 src/VBoxSnapshotDetailsDlg.h \
308 src/VBoxTakeSnapshotDlg.h \
309 src/UIVMInfoDialog.h \
310 src/UIVMLogViewer.h \
311 src/extensions/QIAdvancedSlider.h \
312 src/extensions/QIArrowButtonPress.h \
313 src/extensions/QIArrowButtonSwitch.h \
314 src/extensions/QIArrowSplitter.h \
315 src/extensions/QIDialog.h \
316 src/extensions/QIFileDialog.h \
317 src/extensions/QILabel.h \
318 src/extensions/QILabelSeparator.h \
319 src/extensions/QIListView.h \
320 src/extensions/QIMainDialog.h \
321 src/extensions/QIMainWindow.h \
322 src/extensions/QIMenu.h \
323 src/extensions/QIMessageBox.h \
324 src/extensions/QIProcess.h \
325 src/extensions/QIRichTextLabel.h \
326 src/extensions/QIRichToolButton.h \
327 src/extensions/QISplitter.h \
328 src/extensions/QIStatusBar.h \
329 src/extensions/QIStatusBarIndicator.h \
330 src/extensions/QIStyledItemDelegate.h \
331 src/extensions/QITabWidget.h \
332 src/extensions/QITableView.h \
333 src/extensions/QIToolButton.h \
334 src/extensions/QITreeView.h \
335 src/extensions/QITreeWidget.h \
336 src/extensions/QIWidgetValidator.h \
337 src/extensions/QIAdvancedToolBar.h \
338 src/extensions/graphics/QIGraphicsView.h \
339 src/extensions/graphics/QIGraphicsWidget.h \
340 src/extradata/UIExtraDataDefs.h \
341 src/extradata/UIExtraDataManager.h \
342 src/globals/UIActionPool.h \
343 src/globals/UIAnimationFramework.h \
344 src/globals/UIDesktopWidgetWatchdog.h \
345 src/globals/UIMainEventListener.h \
346 src/globals/UIMessageCenter.h \
347 src/globals/UIModalWindowManager.h \
348 src/globals/UIPopupCenter.h \
349 src/globals/UIShortcutPool.h \
350 src/globals/UIThreadPool.h \
351 src/globals/VBoxGlobal.h \
352 src/globals/VBoxUtils.h \
353 src/medium/UIMediumEnumerator.h \
354 src/medium/UIMediumManager.h \
355 src/runtime/UIActionPoolRuntime.h \
356 src/runtime/UIAddDiskEncryptionPasswordDialog.h \
357 src/runtime/UIConsoleEventHandler.h \
358 src/runtime/UIFrameBuffer.h \
359 src/runtime/UIIndicatorsPool.h \
360 src/runtime/UIKeyboardHandler.h \
361 src/runtime/UIMachine.h \
362 src/runtime/UIMachineLogic.h \
363 src/runtime/UIMachineWindow.h \
364 src/runtime/UIMachineView.h \
365 src/runtime/UIMenuBarEditorWindow.h \
366 src/runtime/UIMouseHandler.h \
367 src/runtime/UIMultiScreenLayout.h \
368 src/runtime/UISession.h \
369 src/runtime/UISlidingToolBar.h \
370 src/runtime/UIStatusBarEditorWindow.h \
371 src/runtime/UIVMCloseDialog.h \
372 src/runtime/fullscreen/UIKeyboardHandlerFullscreen.h \
373 src/runtime/fullscreen/UIMachineLogicFullscreen.h \
374 src/runtime/fullscreen/UIMachineViewFullscreen.h \
375 src/runtime/fullscreen/UIMachineWindowFullscreen.h \
376 src/runtime/normal/UIKeyboardHandlerNormal.h \
377 src/runtime/normal/UIMachineLogicNormal.h \
378 src/runtime/normal/UIMachineViewNormal.h \
379 src/runtime/normal/UIMachineWindowNormal.h \
380 src/runtime/scale/UIKeyboardHandlerScale.h \
381 src/runtime/scale/UIMachineLogicScale.h \
382 src/runtime/scale/UIMachineViewScale.h \
383 src/runtime/scale/UIMachineWindowScale.h \
384 src/runtime/seamless/UIKeyboardHandlerSeamless.h \
385 src/runtime/seamless/UIMachineLogicSeamless.h \
386 src/runtime/seamless/UIMachineViewSeamless.h \
387 src/runtime/seamless/UIMachineWindowSeamless.h \
388 src/selector/UIActionPoolSelector.h \
389 src/selector/UIVMDesktop.h \
390 src/selector/UIVMItem.h \
391 src/selector/UIVirtualBoxEventHandler.h \
392 src/selector/UISelectorWindow.h \
393 src/selector/UISnapshotPane.h \
394 src/selector/graphics/chooser/UIGChooser.h \
395 src/selector/graphics/chooser/UIGChooserModel.h \
396 src/selector/graphics/chooser/UIGChooserView.h \
397 src/selector/graphics/chooser/UIGChooserHandlerMouse.h \
398 src/selector/graphics/chooser/UIGChooserHandlerKeyboard.h \
399 src/selector/graphics/chooser/UIGChooserItem.h \
400 src/selector/graphics/chooser/UIGChooserItemGroup.h \
401 src/selector/graphics/chooser/UIGChooserItemMachine.h \
402 src/selector/graphics/details/UIGDetails.h \
403 src/selector/graphics/details/UIGDetailsModel.h \
404 src/selector/graphics/details/UIGDetailsView.h \
405 src/selector/graphics/details/UIGDetailsItem.h \
406 src/selector/graphics/details/UIGDetailsGroup.h \
407 src/selector/graphics/details/UIGDetailsSet.h \
408 src/selector/graphics/details/UIGDetailsElement.h \
409 src/selector/graphics/details/UIGDetailsElements.h \
410 src/selector/graphics/details/UIGMachinePreview.h \
411 src/settings/UISettingsDialog.h \
412 src/settings/UISettingsDialogSpecific.h \
413 src/settings/UISettingsPage.h \
414 src/settings/UISettingsSerializer.h \
415 src/settings/VBoxSettingsSelector.h \
416 src/settings/global/UIGlobalSettingsExtension.h \
417 src/settings/global/UIGlobalSettingsGeneral.h \
418 src/settings/global/UIGlobalSettingsInput.h \
419 src/settings/global/UIGlobalSettingsLanguage.h \
420 src/settings/global/UIGlobalSettingsDisplay.h \
421 src/settings/global/UIGlobalSettingsNetwork.h \
422 src/settings/global/UIGlobalSettingsNetworkDetailsNAT.h \
423 src/settings/global/UIGlobalSettingsNetworkDetailsHost.h \
424 src/settings/global/UIGlobalSettingsPortForwardingDlg.h \
425 src/settings/machine/UIMachineSettingsAudio.h \
426 src/settings/machine/UIMachineSettingsDisplay.h \
427 src/settings/machine/UIMachineSettingsGeneral.h \
428 src/settings/machine/UIMachineSettingsInterface.h \
429 src/settings/machine/UIMachineSettingsNetwork.h \
430 src/settings/machine/UIMachineSettingsParallel.h \
431 src/settings/machine/UIMachineSettingsPortForwardingDlg.h \
432 src/settings/machine/UIMachineSettingsSF.h \
433 src/settings/machine/UIMachineSettingsSFDetails.h \
434 src/settings/machine/UIMachineSettingsSerial.h \
435 src/settings/machine/UIMachineSettingsStorage.h \
436 src/settings/machine/UIMachineSettingsSystem.h \
437 src/settings/machine/UIMachineSettingsUSB.h \
438 src/settings/machine/UIMachineSettingsUSBFilterDetails.h \
439 src/widgets/UIApplianceEditorWidget.h \
440 src/widgets/UIApplianceExportEditorWidget.h \
441 src/widgets/UIApplianceImportEditorWidget.h \
442 src/widgets/UIBar.h \
443 src/widgets/UIBootTable.h \
444 src/widgets/UIFilePathSelector.h \
445 src/widgets/UIEmptyFilePathSelector.h \
446 src/widgets/UIHostComboEditor.h \
447 src/widgets/UIHotKeyEditor.h \
448 src/widgets/UILineTextEdit.h \
449 src/widgets/UIMenuBar.h \
450 src/widgets/UIPopupBox.h \
451 src/widgets/UIPopupPane.h \
452 src/widgets/UIPopupPaneTextPane.h \
453 src/widgets/UIPopupPaneButtonPane.h \
454 src/widgets/UIPopupStack.h \
455 src/widgets/UIPopupStackViewport.h \
456 src/widgets/UIPortForwardingTable.h \
457 src/widgets/UIProgressDialog.h \
458 src/widgets/UISpacerWidgets.h \
459 src/widgets/UISpecialControls.h \
460 src/widgets/UIToolBar.h \
461 src/widgets/VBoxMediaComboBox.h \
462 src/widgets/UIMiniToolBar.h \
463 src/widgets/VBoxOSTypeSelectorButton.h \
464 src/widgets/UINameAndSystemEditor.h \
465 src/widgets/UIWarningPane.h \
466 src/widgets/UIFilmContainer.h \
467 src/widgets/graphics/UIGraphicsButton.h \
468 src/widgets/graphics/UIGraphicsRotatorButton.h \
469 src/widgets/graphics/UIGraphicsZoomButton.h \
470 src/widgets/graphics/UIGraphicsToolBar.h \
471 src/widgets/graphics/UIGraphicsTextPane.h \
472 src/wizards/UIWizard.h \
473 src/wizards/UIWizardPage.h \
474 src/wizards/newvm/UIWizardNewVM.h \
475 src/wizards/newvm/UIWizardNewVMPageBasic1.h \
476 src/wizards/newvm/UIWizardNewVMPageBasic2.h \
477 src/wizards/newvm/UIWizardNewVMPageBasic3.h \
478 src/wizards/newvm/UIWizardNewVMPageExpert.h \
479 src/wizards/newvd/UIWizardNewVD.h \
480 src/wizards/newvd/UIWizardNewVDPageBasic1.h \
481 src/wizards/newvd/UIWizardNewVDPageBasic2.h \
482 src/wizards/newvd/UIWizardNewVDPageBasic3.h \
483 src/wizards/newvd/UIWizardNewVDPageExpert.h \
484 src/wizards/clonevm/UIWizardCloneVM.h \
485 src/wizards/clonevm/UIWizardCloneVMPageBasic1.h \
486 src/wizards/clonevm/UIWizardCloneVMPageBasic2.h \
487 src/wizards/clonevm/UIWizardCloneVMPageBasic3.h \
488 src/wizards/clonevm/UIWizardCloneVMPageExpert.h \
489 src/wizards/clonevd/UIWizardCloneVD.h \
490 src/wizards/clonevd/UIWizardCloneVDPageBasic1.h \
491 src/wizards/clonevd/UIWizardCloneVDPageBasic2.h \
492 src/wizards/clonevd/UIWizardCloneVDPageBasic3.h \
493 src/wizards/clonevd/UIWizardCloneVDPageBasic4.h \
494 src/wizards/clonevd/UIWizardCloneVDPageExpert.h \
495 src/wizards/exportappliance/UIWizardExportApp.h \
496 src/wizards/exportappliance/UIWizardExportAppPageBasic1.h \
497 src/wizards/exportappliance/UIWizardExportAppPageBasic2.h \
498 src/wizards/exportappliance/UIWizardExportAppPageBasic3.h \
499 src/wizards/exportappliance/UIWizardExportAppPageBasic4.h \
500 src/wizards/exportappliance/UIWizardExportAppPageExpert.h \
501 src/wizards/importappliance/UIWizardImportApp.h \
502 src/wizards/importappliance/UIWizardImportAppPageBasic1.h \
503 src/wizards/importappliance/UIWizardImportAppPageBasic2.h \
504 src/wizards/importappliance/UIWizardImportAppPageExpert.h \
505 src/wizards/firstrun/UIWizardFirstRun.h \
506 src/wizards/firstrun/UIWizardFirstRunPageBasic.h \
507 src/runtime/information/UIInformationConfiguration.h \
508 src/runtime/information/UIInformationDataItem.h \
509 src/runtime/information/UIInformationItem.h \
510 src/runtime/information/UIInformationModel.h \
511 src/runtime/information/UIInformationRuntime.h \
512 src/runtime/information/UIInformationView.h \
513 src/runtime/information/UIVMInformationDialog.h
514
515ifdef VBOX_GUI_WITH_NETWORK_MANAGER
516 VirtualBox_QT_MOCHDRS += \
517 src/net/UINetworkManager.h \
518 src/net/UINetworkManagerDialog.h \
519 src/net/UINetworkManagerIndicator.h \
520 src/net/UINetworkRequest.h \
521 src/net/UINetworkRequestWidget.h \
522 src/net/UINetworkReply.h \
523 src/net/UINetworkCustomer.h \
524 src/net/UIUpdateManager.h \
525 src/net/UIDownloader.h \
526 src/net/UIDownloaderAdditions.h \
527 src/net/UIDownloaderExtensionPack.h \
528 src/net/UIDownloaderUserManual.h \
529 src/settings/global/UIGlobalSettingsProxy.h \
530 src/settings/global/UIGlobalSettingsUpdate.h
531endif
532
533ifdef VBOX_WITH_DRAG_AND_DROP
534 VirtualBox_QT_MOCHDRS += \
535 src/runtime/UIDnDHandler.h
536 ifdef VBOX_WITH_DRAG_AND_DROP_GH
537 VirtualBox_QT_MOCHDRS += \
538 src/runtime/UIDnDMIMEData.h
539 endif
540endif
541
542VirtualBox_QT_MOCHDRS.darwin += \
543 src/platform/darwin/UIWindowMenuManager.h
544
545# Sources containing local definitions of classes that use the Q_OBJECT macro.
546VirtualBox_QT_MOCSRCS = \
547 src/UIVMLogViewer.cpp \
548 src/extensions/QIArrowSplitter.cpp \
549 src/extensions/QISplitter.cpp \
550 src/extensions/QIAdvancedToolBar.cpp \
551 src/extensions/QITableView.cpp \
552 src/extradata/UIExtraDataManager.cpp \
553 src/globals/UIActionPool.cpp \
554 src/globals/UIMainEventListener.cpp \
555 src/globals/UIThreadPool.cpp \
556 src/medium/UIMediumEnumerator.cpp \
557 src/medium/UIMediumManager.cpp \
558 src/runtime/UIActionPoolRuntime.cpp \
559 src/runtime/UIAddDiskEncryptionPasswordDialog.cpp \
560 src/runtime/UIConsoleEventHandler.cpp \
561 src/runtime/UIFrameBuffer.cpp \
562 src/runtime/UIIndicatorsPool.cpp \
563 src/runtime/UIStatusBarEditorWindow.cpp \
564 src/selector/UIActionPoolSelector.cpp \
565 src/selector/UIVirtualBoxEventHandler.cpp \
566 src/selector/UIVMDesktop.cpp \
567 src/selector/UISnapshotPane.cpp \
568 src/settings/machine/UIMachineSettingsStorage.cpp \
569 src/settings/machine/UIMachineSettingsUSB.cpp \
570 src/widgets/UIHotKeyEditor.cpp \
571 src/widgets/UIMiniToolBar.cpp \
572 src/widgets/UIPortForwardingTable.cpp \
573 src/wizards/importappliance/UIWizardImportApp.cpp
574
575ifdef VBOX_GUI_WITH_NETWORK_MANAGER
576 VirtualBox_QT_MOCSRCS += \
577 src/net/UINetworkReply.cpp \
578 src/net/UIUpdateManager.cpp
579endif
580
581VirtualBox_QT_MOCSRCS.darwin += \
582 src/platform/darwin/UIWindowMenuManager.cpp
583VirtualBox_QT_MOCSRCS.win += \
584 src/extensions/QIFileDialog.cpp
585VirtualBox_QT_MOCSRCS.linux += \
586 src/globals/UIDesktopWidgetWatchdog.cpp
587VirtualBox_QT_MOCSRCS.solaris += \
588 src/globals/UIDesktopWidgetWatchdog.cpp
589VirtualBox_QT_MOCSRCS.freebsd += \
590 src/globals/UIDesktopWidgetWatchdog.cpp
591
592ifdef VBOX_WITH_XPCOM
593 VirtualBox_QT_MOCSRCS += \
594 src/globals/COMDefs.cpp
595endif
596
597VirtualBox_SOURCES = \
598 src/main.cpp \
599 src/UIMediumTypeChangeDialog.cpp \
600 src/VBoxAboutDlg.cpp \
601 src/VBoxGlobalSettings.cpp \
602 src/VBoxLicenseViewer.cpp \
603 src/VBoxSnapshotDetailsDlg.cpp \
604 src/VBoxTakeSnapshotDlg.cpp \
605 src/UIVMInfoDialog.cpp \
606 src/UIVMLogViewer.cpp \
607 src/converter/UIConverter.cpp \
608 src/converter/UIConverterBackendCOM.cpp \
609 src/converter/UIConverterBackendGlobal.cpp \
610 src/extensions/QIAdvancedSlider.cpp \
611 src/extensions/QIArrowButtonPress.cpp \
612 src/extensions/QIArrowButtonSwitch.cpp \
613 src/extensions/QIArrowSplitter.cpp \
614 src/extensions/QIDialog.cpp \
615 src/extensions/QIDialogButtonBox.cpp \
616 src/extensions/QIFileDialog.cpp \
617 src/extensions/QILabel.cpp \
618 src/extensions/QILabelSeparator.cpp \
619 src/extensions/QILineEdit.cpp \
620 src/extensions/QIListView.cpp \
621 src/extensions/QIMainDialog.cpp \
622 src/extensions/QIMainWindow.cpp \
623 src/extensions/QIMenu.cpp \
624 src/extensions/QIMessageBox.cpp \
625 src/extensions/QIProcess.cpp \
626 src/extensions/QIRichTextLabel.cpp \
627 src/extensions/QIRichToolButton.cpp \
628 src/extensions/QISplitter.cpp \
629 src/extensions/QIStatusBar.cpp \
630 src/extensions/QIStatusBarIndicator.cpp \
631 src/extensions/QITableView.cpp \
632 src/extensions/QITreeView.cpp \
633 src/extensions/QITreeWidget.cpp \
634 src/extensions/QIWidgetValidator.cpp \
635 src/extensions/QIAdvancedToolBar.cpp \
636 src/extensions/graphics/QIGraphicsView.cpp \
637 src/extensions/graphics/QIGraphicsWidget.cpp \
638 src/extradata/UIExtraDataDefs.cpp \
639 src/extradata/UIExtraDataManager.cpp \
640 src/globals/UIDefs.cpp \
641 src/globals/COMDefs.cpp \
642 src/globals/UIActionPool.cpp \
643 src/globals/UIAnimationFramework.cpp \
644 src/globals/UIDesktopWidgetWatchdog.cpp \
645 src/globals/UIIconPool.cpp \
646 src/globals/UIImageTools.cpp \
647 src/globals/UIMainEventListener.cpp \
648 src/globals/UIMessageCenter.cpp \
649 src/globals/UIModalWindowManager.cpp \
650 src/globals/UIPopupCenter.cpp \
651 src/globals/UIShortcutPool.cpp \
652 src/globals/UIThreadPool.cpp \
653 src/globals/VBoxGlobal.cpp \
654 src/medium/UIMediumDefs.cpp \
655 src/medium/UIMedium.cpp \
656 src/medium/UIMediumEnumerator.cpp \
657 src/medium/UIMediumManager.cpp \
658 src/objects/UIRichTextString.cpp \
659 src/runtime/UIActionPoolRuntime.cpp \
660 src/runtime/UIAddDiskEncryptionPasswordDialog.cpp \
661 src/runtime/UIConsoleEventHandler.cpp \
662 src/runtime/UIFrameBuffer.cpp \
663 src/runtime/UIIndicatorsPool.cpp \
664 src/runtime/UIKeyboardHandler.cpp \
665 src/runtime/UIMachine.cpp \
666 src/runtime/UIMachineLogic.cpp \
667 src/runtime/UIMachineView.cpp \
668 src/runtime/UIMachineWindow.cpp \
669 src/runtime/UIMenuBarEditorWindow.cpp \
670 src/runtime/UIMouseHandler.cpp \
671 src/runtime/UIMultiScreenLayout.cpp \
672 src/runtime/UISession.cpp \
673 src/runtime/UISlidingToolBar.cpp \
674 src/runtime/UIStatusBarEditorWindow.cpp \
675 src/runtime/UIVMCloseDialog.cpp \
676 src/runtime/fullscreen/UIKeyboardHandlerFullscreen.cpp \
677 src/runtime/fullscreen/UIMachineLogicFullscreen.cpp \
678 src/runtime/fullscreen/UIMachineViewFullscreen.cpp \
679 src/runtime/fullscreen/UIMachineWindowFullscreen.cpp \
680 src/runtime/normal/UIKeyboardHandlerNormal.cpp \
681 src/runtime/normal/UIMachineLogicNormal.cpp \
682 src/runtime/normal/UIMachineViewNormal.cpp \
683 src/runtime/normal/UIMachineWindowNormal.cpp \
684 src/runtime/scale/UIKeyboardHandlerScale.cpp \
685 src/runtime/scale/UIMachineLogicScale.cpp \
686 src/runtime/scale/UIMachineViewScale.cpp \
687 src/runtime/scale/UIMachineWindowScale.cpp \
688 src/runtime/seamless/UIKeyboardHandlerSeamless.cpp \
689 src/runtime/seamless/UIMachineLogicSeamless.cpp \
690 src/runtime/seamless/UIMachineViewSeamless.cpp \
691 src/runtime/seamless/UIMachineWindowSeamless.cpp \
692 src/selector/UIActionPoolSelector.cpp \
693 src/selector/UIVMDesktop.cpp \
694 src/selector/UIVMItem.cpp \
695 src/selector/UIVirtualBoxEventHandler.cpp \
696 src/selector/UISelectorWindow.cpp \
697 src/selector/UISnapshotPane.cpp \
698 src/selector/graphics/chooser/UIGChooser.cpp \
699 src/selector/graphics/chooser/UIGChooserModel.cpp \
700 src/selector/graphics/chooser/UIGChooserView.cpp \
701 src/selector/graphics/chooser/UIGChooserHandlerMouse.cpp \
702 src/selector/graphics/chooser/UIGChooserHandlerKeyboard.cpp \
703 src/selector/graphics/chooser/UIGChooserItem.cpp \
704 src/selector/graphics/chooser/UIGChooserItemGroup.cpp \
705 src/selector/graphics/chooser/UIGChooserItemMachine.cpp \
706 src/selector/graphics/details/UIGDetails.cpp \
707 src/selector/graphics/details/UIGDetailsModel.cpp \
708 src/selector/graphics/details/UIGDetailsView.cpp \
709 src/selector/graphics/details/UIGDetailsItem.cpp \
710 src/selector/graphics/details/UIGDetailsGroup.cpp \
711 src/selector/graphics/details/UIGDetailsSet.cpp \
712 src/selector/graphics/details/UIGDetailsElement.cpp \
713 src/selector/graphics/details/UIGDetailsElements.cpp \
714 src/selector/graphics/details/UIGMachinePreview.cpp \
715 src/settings/UISettingsDefs.cpp \
716 src/settings/UISettingsDialog.cpp \
717 src/settings/UISettingsDialogSpecific.cpp \
718 src/settings/UISettingsPage.cpp \
719 src/settings/UISettingsSerializer.cpp \
720 src/settings/VBoxSettingsSelector.cpp \
721 src/settings/global/UIGlobalSettingsExtension.cpp \
722 src/settings/global/UIGlobalSettingsGeneral.cpp \
723 src/settings/global/UIGlobalSettingsInput.cpp \
724 src/settings/global/UIGlobalSettingsLanguage.cpp \
725 src/settings/global/UIGlobalSettingsDisplay.cpp \
726 src/settings/global/UIGlobalSettingsNetwork.cpp \
727 src/settings/global/UIGlobalSettingsNetworkDetailsNAT.cpp \
728 src/settings/global/UIGlobalSettingsNetworkDetailsHost.cpp \
729 src/settings/global/UIGlobalSettingsPortForwardingDlg.cpp \
730 src/settings/machine/UIMachineSettingsAudio.cpp \
731 src/settings/machine/UIMachineSettingsDisplay.cpp \
732 src/settings/machine/UIMachineSettingsGeneral.cpp \
733 src/settings/machine/UIMachineSettingsInterface.cpp \
734 src/settings/machine/UIMachineSettingsNetwork.cpp \
735 src/settings/machine/UIMachineSettingsParallel.cpp \
736 src/settings/machine/UIMachineSettingsPortForwardingDlg.cpp \
737 src/settings/machine/UIMachineSettingsSF.cpp \
738 src/settings/machine/UIMachineSettingsSFDetails.cpp \
739 src/settings/machine/UIMachineSettingsSerial.cpp \
740 src/settings/machine/UIMachineSettingsStorage.cpp \
741 src/settings/machine/UIMachineSettingsSystem.cpp \
742 src/settings/machine/UIMachineSettingsUSB.cpp \
743 src/settings/machine/UIMachineSettingsUSBFilterDetails.cpp \
744 src/widgets/UIApplianceEditorWidget.cpp \
745 src/widgets/UIApplianceExportEditorWidget.cpp \
746 src/widgets/UIApplianceImportEditorWidget.cpp \
747 src/widgets/UIBar.cpp \
748 src/widgets/UIBootTable.cpp \
749 src/widgets/UIFilePathSelector.cpp \
750 src/widgets/UIEmptyFilePathSelector.cpp \
751 src/widgets/UIHostComboEditor.cpp \
752 src/widgets/UIHotKeyEditor.cpp \
753 src/widgets/UILineTextEdit.cpp \
754 src/widgets/UIMenuBar.cpp \
755 src/widgets/UIPopupBox.cpp \
756 src/widgets/UIPopupPane.cpp \
757 src/widgets/UIPopupPaneTextPane.cpp \
758 src/widgets/UIPopupPaneButtonPane.cpp \
759 src/widgets/UIPopupStack.cpp \
760 src/widgets/UIPopupStackViewport.cpp \
761 src/widgets/UIPortForwardingTable.cpp \
762 src/widgets/UIProgressDialog.cpp \
763 src/widgets/UISpecialControls.cpp \
764 src/widgets/UIToolBar.cpp \
765 src/widgets/VBoxGuestRAMSlider.cpp \
766 src/widgets/VBoxMediaComboBox.cpp \
767 src/widgets/UIMiniToolBar.cpp \
768 src/widgets/VBoxOSTypeSelectorButton.cpp \
769 src/widgets/UINameAndSystemEditor.cpp \
770 src/widgets/UIWarningPane.cpp \
771 src/widgets/UIFilmContainer.cpp \
772 src/widgets/graphics/UIGraphicsButton.cpp \
773 src/widgets/graphics/UIGraphicsRotatorButton.cpp \
774 src/widgets/graphics/UIGraphicsZoomButton.cpp \
775 src/widgets/graphics/UIGraphicsToolBar.cpp \
776 src/widgets/graphics/UIGraphicsTextPane.cpp \
777 src/wizards/UIWizard.cpp \
778 src/wizards/UIWizardPage.cpp \
779 src/wizards/newvm/UIWizardNewVM.cpp \
780 src/wizards/newvm/UIWizardNewVMPageBasic1.cpp \
781 src/wizards/newvm/UIWizardNewVMPageBasic2.cpp \
782 src/wizards/newvm/UIWizardNewVMPageBasic3.cpp \
783 src/wizards/newvm/UIWizardNewVMPageExpert.cpp \
784 src/wizards/newvd/UIWizardNewVD.cpp \
785 src/wizards/newvd/UIWizardNewVDPageBasic1.cpp \
786 src/wizards/newvd/UIWizardNewVDPageBasic2.cpp \
787 src/wizards/newvd/UIWizardNewVDPageBasic3.cpp \
788 src/wizards/newvd/UIWizardNewVDPageExpert.cpp \
789 src/wizards/clonevm/UIWizardCloneVM.cpp \
790 src/wizards/clonevm/UIWizardCloneVMPageBasic1.cpp \
791 src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp \
792 src/wizards/clonevm/UIWizardCloneVMPageBasic3.cpp \
793 src/wizards/clonevm/UIWizardCloneVMPageExpert.cpp \
794 src/wizards/clonevd/UIWizardCloneVD.cpp \
795 src/wizards/clonevd/UIWizardCloneVDPageBasic1.cpp \
796 src/wizards/clonevd/UIWizardCloneVDPageBasic2.cpp \
797 src/wizards/clonevd/UIWizardCloneVDPageBasic3.cpp \
798 src/wizards/clonevd/UIWizardCloneVDPageBasic4.cpp \
799 src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp \
800 src/wizards/exportappliance/UIWizardExportApp.cpp \
801 src/wizards/exportappliance/UIWizardExportAppPageBasic1.cpp \
802 src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp \
803 src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp \
804 src/wizards/exportappliance/UIWizardExportAppPageBasic4.cpp \
805 src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp \
806 src/wizards/importappliance/UIWizardImportApp.cpp \
807 src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp \
808 src/wizards/importappliance/UIWizardImportAppPageBasic2.cpp \
809 src/wizards/importappliance/UIWizardImportAppPageExpert.cpp \
810 src/wizards/firstrun/UIWizardFirstRun.cpp \
811 src/wizards/firstrun/UIWizardFirstRunPageBasic.cpp \
812 src/runtime/information/UIInformationConfiguration.cpp \
813 src/runtime/information/UIInformationDataItem.cpp \
814 src/runtime/information/UIInformationItem.cpp \
815 src/runtime/information/UIInformationModel.cpp \
816 src/runtime/information/UIInformationRuntime.cpp \
817 src/runtime/information/UIInformationView.cpp \
818 src/runtime/information/UIVMInformationDialog.cpp
819
820ifdef VBOX_GUI_WITH_NETWORK_MANAGER
821VirtualBox_SOURCES += \
822 src/net/UINetworkManager.cpp \
823 src/net/UINetworkManagerDialog.cpp \
824 src/net/UINetworkManagerIndicator.cpp \
825 src/net/UINetworkRequest.cpp \
826 src/net/UINetworkRequestWidget.cpp \
827 src/net/UINetworkReply.cpp \
828 src/net/UINetworkCustomer.cpp \
829 src/net/UIDownloader.cpp \
830 src/net/UIDownloaderAdditions.cpp \
831 src/net/UIDownloaderExtensionPack.cpp \
832 src/net/UIDownloaderUserManual.cpp \
833 src/net/UIUpdateDefs.cpp \
834 src/net/UIUpdateManager.cpp \
835 src/settings/global/UIGlobalSettingsProxy.cpp \
836 src/settings/global/UIGlobalSettingsUpdate.cpp
837endif
838
839VirtualBox_SOURCES.darwin += \
840 src/platform/darwin/UIAbstractDockIconPreview.cpp \
841 src/platform/darwin/UICocoaDockIconPreview.mm \
842 src/platform/darwin/UIWindowMenuManager.cpp \
843
844if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X11
845 VirtualBox_SOURCES += \
846 src/platform/x11/UIDesktopServices_x11.cpp \
847 src/platform/x11/VBoxX11Helper.cpp \
848 src/platform/x11/XKeyboard-new.cpp
849endif
850
851VirtualBox_SOURCES.win += \
852 src/platform/win/VirtualBox.rc \
853 src/platform/win/UIDesktopServices_win.cpp \
854 src/platform/win/VBoxUtils-win.cpp \
855 src/platform/win/WinKeyboard.cpp
856
857if defined(VBOX_WITH_QTGUI_V5) && (defined(VBOX_WITH_ORACLE_QT) || defined(VBOX_WITH_QT_PAYLOAD))
858 INSTALLS.linux += VirtualBox.qt.conf
859 INSTALLS.solaris += VirtualBox.qt.conf
860 VirtualBox.qt.conf_INST = $(INST_BIN)
861 VirtualBox.qt.conf_MODE = 644
862 VirtualBox.qt.conf_SOURCES = $(VirtualBox_0_OUTDIR)/qt.conf=>qt.conf
863
864$$(VirtualBox_0_OUTDIR)/qt.conf: $(PATH_SUB_CURRENT)/Makefile.kmk $(VBOX_VERSION_MK) | $$(@D)/
865 $(QUIET)$(RM) -f $@
866 $(QUIET)$(APPEND) $@ "[Paths]"
867 $(QUIET)$(APPEND) $@ "Plugins =" $(PATH_OUT)/$(INST_BIN)/plugins
868endif
869
870VirtualBox_DEFS.darwin += VBOX_DARWIN_USE_NATIVE_CONTROLS
871VirtualBox_SOURCES.darwin += \
872 src/platform/darwin/CocoaEventHelper.mm \
873 src/platform/darwin/DarwinKeyboard.cpp \
874 src/platform/darwin/UICocoaApplication.mm \
875 src/platform/darwin/UICocoaSpecialControls.mm \
876 src/platform/darwin/UIDesktopServices_darwin.cpp \
877 src/platform/darwin/UIDesktopServices_darwin_cocoa.mm \
878 src/platform/darwin/VBoxUtils-darwin-cocoa.mm \
879 src/platform/darwin/VBoxUtils-darwin.cpp
880VirtualBox_QT_MOCHDRS.darwin += \
881 src/platform/darwin/UICocoaSpecialControls.h
882
883ifdef VBOX_WITH_ICHAT_THEATER
884 VirtualBox_SOURCES.darwin += \
885 src/platform/darwin/VBoxIChatTheaterWrapper.m
886endif
887
888if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
889 VirtualBox_SOURCES += \
890 src/VBoxFBOverlay.cpp \
891 src/VBoxGLSupportInfo.cpp
892endif
893
894#
895# Drag and drop support.
896#
897ifdef VBOX_WITH_DRAG_AND_DROP
898 VirtualBox_SOURCES += \
899 src/runtime/UIDnDHandler.cpp
900 ifdef VBOX_WITH_DRAG_AND_DROP_GH
901 VirtualBox_SOURCES += \
902 src/runtime/UIDnDMIMEData.cpp
903 VirtualBox_SOURCES.win += \
904 src/runtime/UIDnDDropSource_win.cpp \
905 src/runtime/UIDnDDataObject_win.cpp \
906 src/runtime/UIDnDEnumFormat_win.cpp
907 endif
908endif
909
910# The Qt modules we're using.
911# (The include directory and lib/framework for each module will be added by the Qt4 unit.)
912VirtualBox_QT_MODULES = Core Gui
913ifdef VBOX_WITH_QTGUI_V5
914 # Qt5 requires additional modules:
915 VirtualBox_QT_MODULES += Widgets PrintSupport
916 VirtualBox_QT_MODULES.linux += X11Extras
917 VirtualBox_QT_MODULES.solaris += X11Extras
918 VirtualBox_QT_MODULES.freebsd += X11Extras
919 VirtualBox_QT_MODULES.darwin += MacExtras
920 VirtualBox_QT_MODULES.win += WinExtras
921endif # VBOX_WITH_QTGUI_V5
922if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
923 VirtualBox_QT_MODULES += OpenGL
924endif
925
926# Pull in the ui files
927$(eval VirtualBox_SOURCES += $(FORMS))
928
929# Resource files with some OSE differences (VirtualBoxBrand.qrc is created further down).
930VirtualBox_SOURCES += VirtualBox1.qrc
931VirtualBox1.qrc_RCCFLAGS = -name BASIC1
932VirtualBox_SOURCES += VirtualBox2.qrc
933VirtualBox2.qrc_RCCFLAGS = -name BASIC2
934VirtualBox_SOURCES += VirtualBox1_hidpi.qrc
935VirtualBox1_hidpi.qrc_RCCFLAGS = -name BASIC1_HIDPI
936VirtualBox_SOURCES += VirtualBox2_hidpi.qrc
937VirtualBox2_hidpi.qrc_RCCFLAGS = -name BASIC2_HIDPI
938ifeq ($(KBUILD_TARGET),darwin)
939 VirtualBox_SOURCES += VirtualBoxMac.qrc
940 VirtualBoxMac.qrc_RCCFLAGS = -name MAC
941else
942 VirtualBox_SOURCES += VirtualBoxOther.qrc
943 VirtualBoxOther.qrc_RCCFLAGS = -name OTHER
944endif
945VirtualBox_SOURCES += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
946$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc_RCCFLAGS = -name BRAND
947if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
948 VirtualBox_SOURCES += VirtualBoxShaders.qrc
949 VirtualBoxShaders.qrc_RCCFLAGS = -name SHADERS
950endif
951
952# Import the translation source from VBoxUI.pro and add the qt_xx_YY counterparts
953VirtualBox_QT_TRANSLATIONS := $(TRANSLATIONS) \
954 $(patsubst nls/VirtualBox_%.ts,nls/qt_%.ts, $(filter nls/VirtualBox_%.ts,$(TRANSLATIONS)))
955# Compress the translation units.
956VirtualBox_LRCFLAGS = -silent
957# Where to install the translations (a separate install target, VirtualBox-nls-inst is created).
958VirtualBox_QT_TRANSLATIONS_INST = $(INST_BIN)nls/
959
960
961## @todo how to detect what tool is used?
962## @todo GCC3 seems to lack -Wno-missing-base-class-initializer, so we use
963# more generic -Wno-extra
964# bird: What about $(if $(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-extra))?
965ifdef VBOX_WITH_XPCOM
966 VirtualBox_src/globals/COMDefs.cpp_CXXFLAGS = $(VBOX_GCC_Wno-extra)
967endif
968
969
970#
971# Generate the COM wrappers.
972#
973includedep $(PATH_TARGET)/VirtualBoxComWrapperFiles.dep
974VirtualBox_BLDDIRS += $(VirtualBox_0_OUTDIR)/include
975VirtualBox_INTERMEDIATES += $(VirtualBox_0_OUTDIR)/include/COMWrappers
976VirtualBox_CLEAN += $(wildcard $(VirtualBox_0_OUTDIR)/include/*) $(PATH_TARGET)/VirtualBoxComWrapperFiles.dep
977VirtualBox_SOURCES += $(VirtualBox_0_OUTDIR)/include/COMWrappers.cpp
978
979## @todo kmk doesn't remake optional outputs when they are missing...
980$$(VirtualBox_0_OUTDIR)/include/COMWrappers \
981+ $(PATH_TARGET)/VirtualBoxComWrapperFiles.dep \
982+| $(if-expr defined(VirtualBox_VBOX_COMWRAPPERS) \
983, $(VirtualBox_VBOX_COMWRAPPERS) \
984, $$(VirtualBox_0_OUTDIR)/include/COMEnums.h \
985 $$(VirtualBox_0_OUTDIR)/include/COMWrappers.cpp \
986): \
987 $(VBOX_XIDL_FILE) \
988 $(VBOX_VIRTUALBOX4_SRC)/src/globals/COMWrappers.xsl \
989 $(VBOX_FILESPLIT) \
990 | $$(dir $$@)
991 $(call MSG_GENERATE,VirtualBox,$<,$@)
992 $(QUIET)$(RM) -f -- "$@" "$(PATH_TARGET)/VirtualBoxComWrapperFiles.dep"
993 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_VIRTUALBOX4_SRC)/src/globals/COMWrappers.xsl $<
994 $(QUIET)$(VBOX_FILESPLIT) $@ $(VirtualBox_0_OUTDIR)/include \
995 $(PATH_TARGET)/VirtualBoxComWrapperFiles.dep VirtualBox_VBOX_COMWRAPPERS
996 $(APPEND) "$@"
997
998# alias for generating the COM Wrappers file.
999testwrappers:: $$(VirtualBox_0_OUTDIR)/include/COMWrappers
1000
1001
1002#
1003# Generate qrc file with branded icons.
1004#
1005VirtualBox_BLDDIRS += $(VBOX_VIRTUALBOX4_OUT_DIR)
1006VirtualBox_CLEAN += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
1007$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc: \
1008 $(VBOX_VIRTUALBOX4_SRC)/VirtualBoxBrand.qrc \
1009 $(PATH_ROOT)/Config.kmk \
1010 | $$(dir $$@)
1011 $(call MSG_GENERATE,VirtualBox,$<,$@)
1012 $(QUIET)$(SED) \
1013 -e 's;@VBOX_ABOUT_PNG@;$(VBOX_BRAND_GUI_ABOUT_PNG);g' \
1014 -e 's;@VBOX_ABOUT_HIDPI_PNG@;$(VBOX_BRAND_GUI_ABOUT_HIDPI_PNG);g' \
1015 -e 's;@VBOX_ABOUT_16PX_PNG@;$(VBOX_BRAND_GUI_ABOUT_16PX_PNG);g' \
1016 -e 's;@VBOX_ABOUT_16PX_HIDPI_PNG@;$(VBOX_BRAND_GUI_ABOUT_16PX_HIDPI_PNG);g' \
1017 -e 's;@VBOX_VBOX_16PX_PNG@;$(VBOX_BRAND_GUI_VBOX_16PX_PNG);g' \
1018 -e 's;@VBOX_VBOX_20PX_PNG@;$(VBOX_BRAND_GUI_VBOX_20PX_PNG);g' \
1019 -e 's;@VBOX_VBOX_32PX_PNG@;$(VBOX_BRAND_GUI_VBOX_32PX_PNG);g' \
1020 -e 's;@VBOX_VBOX_40PX_PNG@;$(VBOX_BRAND_GUI_VBOX_40PX_PNG);g' \
1021 -e 's;@VBOX_VBOX_48PX_PNG@;$(VBOX_BRAND_GUI_VBOX_48PX_PNG);g' \
1022 -e 's;@VBOX_VBOX_64PX_PNG@;$(VBOX_BRAND_GUI_VBOX_64PX_PNG);g' \
1023 -e 's;@VBOX_CUBE_42PX_PNG@;$(VBOX_BRAND_GUI_CUBE_42PX_PNG);g' \
1024 -e 's;@VBOX_CUBE_SVG@;$(VBOX_BRAND_GUI_VBOX_SVG);g' \
1025 --output $@ \
1026 $<
1027
1028
1029#
1030# Precompiled header - non-functional atm.
1031#
1032ifdef VBOX_WITH_PRECOMPILED_HEADERS
1033 if1of ($(KBUILD_TARGET),win)
1034 VirtualBox_USES += vccprecomp
1035 VirtualBox_PCH_HDR := $(PATH_SUB_CURRENT)/src/precomp_vcc.h
1036
1037 else # obsolete experiment
1038 VirtualBox_DEFS += VBOX_WITH_PRECOMPILED_HEADERS
1039 VirtualBox_INCS <= $(VirtualBoxPch_0_OUTDIR)/src
1040 VirtualBox_CXXFLAGS += -Winvalid-pch -fpch-preprocess
1041 $(foreach x,$(filter-out include/COMWrappers.cpp, $(filter %.cpp, \
1042 $(VirtualBox_SOURCES) \
1043 $(VirtualBox_SOURCES.$(KBUILD_TARGET)) \
1044 $(VirtualBox_SOURCES.$(KBUILD_TYPE)) \
1045 )),$(eval $(abspath $(PATH_OBJ)/VirtualBox/$(basename $(x)).o): $$$$(VirtualBoxPch_0_OUTDIR)/src/precomp.h.gch))
1046
1047 TOOL_VirtualBoxPchLinker = Linker for VirtualBoxPch
1048 define TOOL_VirtualBoxPchLinker_LINK_MISCBIN_CMDS
1049 $(APPEND) -t $(out)
1050 endef
1051
1052 MISCBINS += VirtualBoxPch
1053 VirtualBoxPch_EXTENDS = VirtualBox
1054 VirtualBoxPch_LDTOOL = VirtualBoxPchLinker
1055 VirtualBoxPch_INSTTYPE = none
1056 VirtualBoxPch_NAME = VirtualBoxPch
1057 VirtualBoxPch_INTERMEDIATES = $(filter-out %.h.gch, $(VirtualBox_INTERMEDIATES))
1058 VirtualBoxPch_SOURCES = src/precomp.h
1059 VirtualBoxPch_CXXFLAGS = $(filter-out -Winvalid-pch -fpch-preprocess, $(VirtualBox_CXXFLAGS)) -x c++-header
1060 VirtualBoxPch_CXXOBJSUFF = .h.gch
1061 VirtualBoxPch_SRC_HANDLERS = .h:def_src_handler_cxx
1062 VirtualBoxPch_SOURCES.darwin = $(NO_SUCH_VARIABLE)
1063 VirtualBoxPch_SOURCES.solaris = $(NO_SUCH_VARIABLE)
1064 VirtualBoxPch_SOURCES.freebsd = $(NO_SUCH_VARIABLE)
1065 VirtualBoxPch_SOURCES.linux = $(NO_SUCH_VARIABLE)
1066 VirtualBoxPch_SOURCES.win = $(NO_SUCH_VARIABLE)
1067 VirtualBoxPch_QT_MODULES = $(VirtualBox_QT_MODULES) # "bug" - not inherited.
1068 VirtualBoxPch_INCS = $(VirtualBox_INCS) # "bug" - missing qtuic and qtmoc
1069 endif # obsolete experiment
1070endif
1071
1072ifeq ($(KBUILD_TARGET),win)
1073#
1074# On Windows we'll have to generate/edit part of the resource file.
1075# The IDI_ICON1 name is Qt specific.
1076#
1077src/platform/win/VirtualBox.rc_INCS = $(VirtualBox_0_OUTDIR)
1078src/platform/win/VirtualBox.rc_DEPS = $(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc
1079src/platform/win/VirtualBox.rc_CLEAN = $(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc
1080
1081$$(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc: $(MAKEFILE_CURRENT) $(VBOX_WINDOWS_ICON_FILE) | $$(dir $$@)
1082 $(APPEND) -t $@ 'IDI_ICON1 ICON "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
1083
1084endif # win
1085
1086
1087#
1088# Unset everything that was loaded from VBoxUI.pro.
1089#
1090FORMS :=
1091TRANSLATIONS :=
1092
1093
1094ifeq ($(KBUILD_TARGET),darwin)
1095#
1096# Create directories for each approved language or the application
1097# menu won't be translated.
1098#
1099INSTALLS += VirtualBox.lproj
1100VirtualBox.lproj_INST = $(INST_VIRTUALBOX)Contents/Resources/
1101VirtualBox.lproj_MODE = 755
1102VirtualBox.lproj_DIRS := $(addsuffix .lproj,$(VBOX_APPROVED_GUI_LANGUAGES))
1103
1104#
1105# On OS X (darwin) we need to install icon resources and compulsory bundle contents.
1106# The VirtualBoxVM.app helper is for launching VMs (fixes some issues with the dock).
1107#
1108INSTALLS += VirtualBox.app
1109VirtualBox.app_INST = $(INST_VIRTUALBOX)Contents/
1110VirtualBox.app_MODE = 644
1111VirtualBox.app_SOURCES = \
1112 src/platform/darwin/PkgInfo \
1113 $(VirtualBox.app_0_OUTDIR)/Info.plist \
1114 $(VBOX_MACOSX_ICON_FILE)=>Resources/virtualbox.icns \
1115 $(VBOX_BRAND_GUI_VBOX_64PX_PNG)=>Resources/virtualbox.png \
1116 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-vbox.icns=>Resources/virtualbox-vbox.icns \
1117 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-vbox-extpack.icns=>Resources/virtualbox-vbox-extpack.icns \
1118 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-ovf.icns=>Resources/virtualbox-ovf.icns \
1119 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-ova.icns=>Resources/virtualbox-ova.icns \
1120 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-vdi.icns=>Resources/virtualbox-vdi.icns \
1121 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-vmdk.icns=>Resources/virtualbox-vmdk.icns \
1122 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-vhd.icns=>Resources/virtualbox-vhd.icns \
1123 $(PATH_ROOT)/src/VBox/Artwork/darwin/virtualbox-hdd.icns=>Resources/virtualbox-hdd.icns
1124
1125 ifdef VBOX_WITH_QTGUI_V5
1126 # Qt5 requires qt.conf on Mac OS X:
1127 VirtualBox.app_SOURCES += \
1128 $(VirtualBox.app_0_OUTDIR)/qt.conf=>Resources/qt.conf
1129 endif # VBOX_WITH_QTGUI_V5
1130
1131 $$(VirtualBox.app_0_OUTDIR)/Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/Info.plist $(VBOX_VERSION_MK) | $$(@D)/
1132 $(call MSG_GENERATE,VirtualBox.app,$<,$@)
1133 $(QUIET)$(RM) -f $@
1134 $(QUIET)$(SED) \
1135 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
1136 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
1137 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
1138 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
1139 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
1140 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
1141 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
1142 $< > $@
1143
1144 $$(VirtualBox.app_0_OUTDIR)/qt.conf: $(PATH_SUB_CURRENT)/Makefile.kmk $(VBOX_VERSION_MK) | $$(@D)/
1145 $(QUIET)$(RM) -f $@
1146 $(QUIET)$(APPEND) $@ "[Paths]"
1147 $(QUIET)$(APPEND) $@ "Prefix =" $(PATH_OUT)/$(VirtualBox.app_INST)
1148
1149 INSTALLS += VirtualBoxVM.app
1150 VirtualBoxVM.app_INST = $(VirtualBox.app_INST)Resources/VirtualBoxVM.app/Contents/
1151 VirtualBoxVM.app_MODE = 644
1152 VirtualBoxVM.app_SOURCES = \
1153 src/platform/darwin/VM-PkgInfo=>PkgInfo \
1154 $(VirtualBoxVM.app_0_OUTDIR)/VM-Info.plist=>Info.plist \
1155 $(foreach mysrc,$(VirtualBox.app_SOURCES),$(if-expr $(pos =>Resources/,$(mysrc)) > 0,$(mysrc),))
1156 VirtualBoxVM.app_SYMLINKS = \
1157 MacOS=>../../../MacOS/
1158
1159 $$(VirtualBoxVM.app_0_OUTDIR)/VM-Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/VM-Info.plist $(VBOX_VERSION_MK) | $$(@D)/
1160 $(call MSG_GENERATE,VirtualBoxVM.app,$<,$@)
1161 $(QUIET)$(RM) -f $@
1162 $(QUIET)$(SED) \
1163 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
1164 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
1165 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
1166 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
1167 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
1168 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
1169 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
1170 --output $@ $<
1171
1172 PROGRAMS += vmstarter
1173 vmstarter_TEMPLATE = VBOXR3EXE
1174 ifdef VBOX_WITH_NEW_XCODE
1175 vmstarter_OBJCXXFLAGS += -Wno-error=deprecated-declarations ## @todo fix deprecate API use!
1176 else
1177 vmstarter_OBJCXXFLAGS += -Wno-deprecated-declarations
1178 endif
1179 vmstarter_LDFLAGS += -framework AppKit
1180 vmstarter_SOURCES = src/platform/darwin/vmstarter.mm
1181 vmstarter_INST = $(INST_BIN)vmstarter
1182
1183 INSTALLS += vmstarter.app
1184 vmstarter.app_INST = $(VirtualBox.app_INST)Resources/vmstarter.app/Contents/
1185 vmstarter.app_MODE = 644
1186 vmstarter.app_SOURCES = \
1187 src/platform/darwin/vmstarter-PkgInfo=>PkgInfo \
1188 $(vmstarter.app_0_OUTDIR)/vmstarter-Info.plist=>Info.plist \
1189 $(foreach mysrc,$(VirtualBox.app_SOURCES),$(if-expr $(pos =>Resources/,$(mysrc)) > 0,$(mysrc),))
1190 vmstarter.app_SYMLINKS = \
1191 MacOS=>../../../MacOS \
1192
1193 $$(vmstarter.app_0_OUTDIR)/vmstarter-Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/vmstarter-Info.plist $(VBOX_VERSION_MK) | $$(@D)/
1194 $(call MSG_GENERATE,vmstarter.app,$<,$@)
1195 $(QUIET)$(RM) -f $@
1196 $(QUIET)$(SED) \
1197 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
1198 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
1199 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
1200 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
1201 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
1202 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
1203 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
1204 --output $@ $<
1205endif # darwin
1206
1207#
1208# App for testing GL support
1209#
1210if defined(VBOX_WITH_VIDEOHWACCEL)
1211 if1of ($(KBUILD_TARGET), win linux freebsd)
1212 LIBRARIES += VBoxOGL2D
1213 VBoxOGL2D_TEMPLATE = $(if $(VBOX_WITH_VIDEOHWACCEL),$(if $(VBOX_WITH_HARDENING),VBOXQTGUI,VBOXQTGUIEXE),VBOXMAINEXE)
1214 VBoxOGL2D_DEFS = QT_NO_DEBUG QT_THREAD_SUPPORT QT_SHARED HAVE_CONFIG_H VBOX_WITH_VIDEOHWACCEL VBOX_GUI_USE_QGL
1215 VBoxOGL2D_QT_MODULES += OpenGL
1216 VBoxOGL2D_SOURCES = \
1217 src/VBoxGLSupportInfo.cpp
1218 VBoxOGL2D_INCS = include
1219 endif
1220endif
1221
1222
1223#
1224# Testcase for the darwin keyboard routines.
1225#
1226ifdef VBOX_WITH_TESTCASES
1227 PROGRAMS.darwin += tstDarwinKeyboard
1228 tstDarwinKeyboard_TEMPLATE = VBOXR3TSTEXE
1229 tstDarwinKeyboard_DEFS.x86 = USE_HID_FOR_MODIFIERS
1230 tstDarwinKeyboard_INCS = include
1231 tstDarwinKeyboard_SOURCES = \
1232 src/platform/darwin/tstDarwinKeyboard.cpp \
1233 src/platform/darwin/DarwinKeyboard.cpp
1234 tstDarwinKeyboard_SOURCES.amd64 = \
1235 src/platform/darwin/CocoaEventHelper.mm
1236 tstDarwinKeyboard_LDFLAGS = -framework IOKit -framework Carbon -framework AppKit
1237 tstDarwinKeyboard_LIBS = \
1238 $(LIB_RUNTIME)
1239endif
1240
1241
1242#
1243# Testcase for SSL certificate downloading.
1244#
1245if defined(VBOX_WITH_TESTCASES) && defined(VBOX_GUI_WITH_NETWORK_MANAGER)
1246 PROGRAMS += tstSSLCertDownloads
1247 tstSSLCertDownloads_TEMPLATE = VBOXQTGUIEXE
1248 ifndef VBOX_WITH_QTGUI_V5
1249 tstSSLCertDownloads_USES = qt4
1250 tstSSLCertDownloads_QTTOOL = QT4
1251 else # VBOX_WITH_QTGUI_V5
1252 tstSSLCertDownloads_USES = qt5
1253 tstSSLCertDownloads_QTTOOL = QT5
1254 endif # VBOX_WITH_QTGUI_V5
1255 tstSSLCertDownloads_QT_MODULES = Core Gui
1256 tstSSLCertDownloads_DEFS = VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
1257 tstSSLCertDownloads_INCS = \
1258 $(VBOX_GUI_INC_DIRS)
1259 tstSSLCertDownloads_SOURCES = \
1260 src/net/tstSSLCertDownloads.cpp
1261endif
1262
1263
1264#
1265# Doxygen documentation.
1266#
1267QTGUI_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/qtgui
1268BLDDIRS += $(QTGUI_DOXYFILE_OUTPUT)
1269OTHER_CLEAN += \
1270 $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui \
1271 $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui
1272
1273# Generate the Doxyfile
1274$(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui: \
1275 $(PATH_SUB_CURRENT)/Doxyfile \
1276 $(PATH_SUB_CURRENT)/Makefile.kmk \
1277 | $$(dir $$@)
1278 $(RM) -f $@ [email protected] [email protected]
1279 $(CP) -f $< [email protected]
1280 $(APPEND) [email protected]
1281 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(QTGUI_DOXYFILE_OUTPUT)"
1282 $(APPEND) [email protected] "WARN_LOGFILE = $(QTGUI_DOXYFILE_OUTPUT)/errors"
1283 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include ."
1284 $(APPEND) [email protected] "PREDEFINED += $(ARCH_BITS_DEFS)"
1285 $(APPEND) [email protected]
1286 $(APPEND) [email protected] "INPUT = $(dir $<)"
1287 $(APPEND) [email protected]
1288 $(MV) -f [email protected] $@
1289
1290# Do the actual job.
1291$(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui: $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui $$(QTGUI_DOXYFILE_INPUT) | $(QTGUI_DOXYFILE_OUTPUT)/
1292 $(RM) -Rf -- $(QTGUI_DOXYFILE_OUTPUT)/html/
1293 doxygen $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui
1294 $(APPEND) $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui
1295
1296# aliases
1297docs.qtgui: $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui
1298if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
1299docs: $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui
1300endif
1301
1302
1303
1304# Commit the magic.
1305# (note: before custom rules that make usage of generated variables!).
1306include $(FILE_KBUILD_SUB_FOOTER)
1307
1308
1309#
1310# Update all known NLS translation (.ts) files in the nls/ subdirectory.
1311#
1312# NOTE: This target is intended to be run only by the GUI maintainer shortly
1313# before a new product release. VirtualBox_xx_YY.ts is a template for new
1314# languages and should never be actually translated or installed.
1315#
1316# Use the checknls target for checking again common mistakes done by the
1317# translators.
1318#
1319# For Qt >= 4.6.0 it maybe necessary to add -I $(VBOX_GUI_INC_DIRS) to the
1320# lupdate call
1321#
1322#VirtualBox_QT_TRANSLATIONS = nls/VirtualBox_de.ts
1323checknls::
1324 # Check for missing :/ in image paths
1325 grep -i "src=[^:%]" $(filter-out nls/qt_%.ts,$(VirtualBox_QT_TRANSLATIONS))
1326
1327updatenls:: makeallnls nls/VirtualBox_en.ts
1328
1329makeallnls:: \
1330 $(foreach header,$(VBOX_GUI_INC_DIRS),$(wildcard $(header)/*.h)) \
1331 $(filter-out %.qrc,$(VirtualBox_SOURCES) $(VirtualBox_VBOX_EXTRA_NLS_SOURCES))
1332 $(call MSG_L1,lupdate all languages (nls/*.ts))
1333 $(QUIET)$(if $(VBOX_WITH_QTGUI_V5),$(TOOL_QT5_LUPDATE),$(TOOL_QT4_LUPDATE)) \
1334 $^ \
1335 -ts \
1336 $(filter-out nls/VirtualBox_en.ts,$(filter-out nls/qt_%.ts,$(VirtualBox_QT_TRANSLATIONS))) \
1337 nls/VirtualBox_xx_YY.ts
1338
1339# Create the English translation file. This is something special cause it will
1340# contain the plural forms only.
1341nls/VirtualBox_en.ts: \
1342 $(foreach header,$(VBOX_GUI_INC_DIRS),$(wildcard $(header)/*.h)) \
1343 $(filter-out %.qrc,$(VirtualBox_SOURCES) $(VirtualBox_VBOX_EXTRA_NLS_SOURCES))
1344 $(call MSG_L1,lupdate $@)
1345 $(QUIET)$(if $(VBOX_WITH_QTGUI_V5),$(TOOL_QT5_LUPDATE),$(TOOL_QT4_LUPDATE)) \
1346 $^ \
1347 -ts \
1348 $@
1349 $(QUIET)$(SED) -n -i -e \
1350 '/<context>/,/<\/context>/!p;/<context>/h;/<name>/H;/<message numerus="yes">/,/<\/message>/H;/<\/context>/{H;x;/<message/p}' \
1351 $@
1352
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