VirtualBox

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

Last change on this file since 35906 was 35808, checked in by vboxsync, 13 years ago

FE/Qt4: allow some customizations

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.1 KB
Line 
1# $Id: Makefile.kmk 35808 2011-02-01 11:22:40Z vboxsync $
2## @file
3# Makefile for the VirtualBox Qt GUI.
4#
5
6#
7# Copyright (C) 2006-2010 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# VBOX_WITH_REGISTRATION := 1
28
29# Ask the user to register at Sun. If this setting is disabled the user can
30# still register using the menu if desired.
31# VBOX_WITH_REGISTRATION_REQUEST := 1
32
33# For now this should be disabled in any case
34ifdef VBOX_WITH_REGISTRATION
35 VBOX_WITH_REGISTRATION=
36endif
37ifdef VBOX_WITH_REGISTRATION_REQUEST
38 VBOX_WITH_REGISTRATION_REQUEST=
39endif
40
41# Show the update notifier dialog during startup. If this setting is disabled
42# the user can still update using the menu if desired.
43ifndef VBOX_OSE
44VBOX_WITH_UPDATE_REQUEST := 1
45endif
46
47#
48# The targets.
49#
50ifdef VBOX_WITH_HARDENING
51PROGRAMS += VirtualBoxHardened
52DLLS += VirtualBox
53else
54PROGRAMS += VirtualBox
55endif
56
57INSTALLS += VirtualBox.nls
58
59
60#
61# Include the language lists.
62#
63include $(PATH_SUB_CURRENT)/nls/ApprovedLanguages.kmk
64
65
66#
67# Hardened VirtualBox.
68#
69VirtualBoxHardened_TEMPLATE = VBOXR3HARDENEDEXE
70VirtualBoxHardened_SOURCES = src/hardenedmain.cpp
71VirtualBoxHardened_NAME = VirtualBox
72VirtualBoxHardened_INST.darwin = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
73
74
75#
76# Include Qt project file, we'll use FORMS and TRANSLATIONS in
77# the VirtualBox setup below.
78#
79SAVED_TEMPLATE := $(TEMPLATE)
80include $(PATH_SUB_CURRENT)/VBoxUI.pro
81
82
83#
84# VirtualBox - The GUI program.
85#
86USES += qt4
87VirtualBox_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXQT4GUI,VBOXQT4GUIEXE)
88VirtualBox_NAME = VirtualBox
89ifndef VBOX_WITH_HARDENING # For the launch trick we need different inode numbers.
90 VirtualBox_INST.darwin = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
91endif
92VirtualBox_SDKS.win = WINPSDK DXSDK
93if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd os2) # X11 + os2 ## @todo solaris
94 VirtualBox_SDKS += LIBSDL
95endif
96
97ifdef VBOX_WITH_ICHAT_THEATER
98 # For testing iChat Theater stuff change the sdk path (HACK ALERT!)
99 VBOX_PATH_MACOSX_SDK = /Developer/SDKs/MacOSX10.5.sdk
100endif
101
102VirtualBox_DEFS =
103VirtualBox_DEFS.debug = VBOX_CHECK_STATE # QT_FATAL_ASSERT
104VirtualBox_DEFS.darwin = VBOX_GUI_USE_QUARTZ2D VBOX_GUI_USE_QIMAGE
105ifndef VBOX_WITH_COCOA_QT
106VirtualBox_DEFS.darwin.x86= USE_HID_FOR_MODIFIERS
107endif
108VirtualBox_DEFS.freebsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
109VirtualBox_DEFS.linux = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
110VirtualBox_DEFS.netbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
111VirtualBox_DEFS.openbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
112VirtualBox_DEFS.solaris = VBOX_GUI_USE_QIMAGE #VBOX_GUI_USE_SDL
113VirtualBox_DEFS.win = VBOX_GUI_USE_QIMAGE UNICODE QT_DLL
114ifdef VBOX_WITH_ICHAT_THEATER
115 VirtualBox_DEFS.darwin += VBOX_WITH_ICHAT_THEATER
116endif
117ifneq ($(KBUILD_TYPE),release)
118 # non-release builds has some extra features.
119 VirtualBox_DEFS.win += VBOX_GUI_USE_DDRAW
120endif
121VirtualBox_DEFS += \
122 $(if $(VBOX_WITH_REGISTRATION),VBOX_WITH_REGISTRATION) \
123 $(if $(VBOX_WITH_REGISTRATION_REQUEST),VBOX_WITH_REGISTRATION_REQUEST) \
124 $(if $(VBOX_WITH_UPDATE_REQUEST),VBOX_WITH_UPDATE_REQUEST) \
125 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA) \
126 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
127 $(if $(VBOX_WITH_SOLARIS_OSS),VBOX_WITH_SOLARIS_OSS) \
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_EHCI),VBOX_WITH_EHCI) \
132 $(if $(VBOX_GUI_WITH_PIDFILE),VBOX_GUI_WITH_PIDFILE) \
133 $(if $(VBOX_GUI_WITH_KEYS_RESET_HANDLER),VBOX_GUI_WITH_KEYS_RESET_HANDLER) \
134 $(if $(VBOX_GUI_WITH_CUSTOMIZATIONS1),VBOX_GUI_WITH_CUSTOMIZATIONS1)
135ifdef VBOX_WITH_DEBUGGER_GUI
136 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI
137 if "$(KBUILD_TYPE)" != "release"
138 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI_MENU
139 endif
140endif
141ifdef VBOX_WITH_VIDEOHWACCEL
142 VirtualBox_DEFS += VBOX_WITH_VIDEOHWACCEL \
143 VBOX_GUI_USE_QGL
144else ifdef VBOX_GUI_USE_QGL
145 VirtualBox_DEFS += VBOX_GUI_USE_QGL
146endif
147ifdef VBOX_WITH_VIRTIO
148 VirtualBox_DEFS += VBOX_WITH_VIRTIO
149endif
150ifdef VBOX_WITH_WDDM
151 VirtualBox_DEFS += VBOX_WITH_WDDM
152endif
153ifdef VBOX_WITH_CRHGSMI
154 VirtualBox_DEFS += VBOX_WITH_CRHGSMI
155endif
156ifdef VBOX_BLEEDING_EDGE
157VirtualBox_src/selector/VBoxSelectorWnd.cpp_DEFS += \
158 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
159VirtualBox_src/runtime/UIMachineWindow.cpp_DEFS += \
160 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
161VirtualBox_src/VBoxAboutDlg.cpp_DEFS += \
162 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
163VirtualBox_src/main.cpp_DEFS += \
164 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
165endif
166
167
168VBOX_GUI_INC_DIRS = \
169 ./src \
170 ./src/globals \
171 ./src/platform \
172 ./src/platform/x11 \
173 ./src/platform/darwin \
174 ./src/platform/win \
175 ./src/extensions \
176 ./src/settings \
177 ./src/settings/global \
178 ./src/settings/machine \
179 ./src/wizards/newvm \
180 ./src/wizards/newhd \
181 ./src/wizards/firstrun \
182 ./src/wizards/exportappliance \
183 ./src/wizards/importappliance \
184 ./src/widgets \
185 ./src/selector \
186 ./src/runtime \
187 ./src/runtime/fullscreen \
188 ./src/runtime/normal \
189 ./src/runtime/scale \
190 ./src/runtime/seamless
191
192ifdef VBOX_WITH_REGISTRATION
193 VBOX_GUI_INC_DIRS += \
194 ./src/wizards/registration
195endif
196
197VirtualBox_INCS = \
198 $(VBOX_GUI_INC_DIRS) \
199 $(VirtualBox_0_OUTDIR)/include
200
201# Necessary for the hdd backend enumeration
202VirtualBox_LIBS = $(LIB_DDU)
203
204# This library is required for multi-monitor support
205VirtualBox_LIBS.linux += Xinerama
206VirtualBox_LIBS.solaris += Xinerama
207VirtualBox_LIBS.freebsd += Xinerama
208
209ifneq ($(KBUILD_TARGET),win)
210VirtualBox_CXXFLAGS += -Wno-switch
211endif
212
213ifdef VBOX_WITH_VIDEOHWACCEL
214# Necessary for save state support
215VirtualBox_LIBS += $(LIB_VMM)
216endif
217ifeq ($(KBUILD_TYPE),release)
218 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
219else
220 VirtualBox_LDFLAGS.linux+= -rdynamic # for backtrace_symbols()
221 ifeq ($(USERNAME),dmik)
222 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
223 else
224 VirtualBox_LDFLAGS.win += /SUBSYSTEM:console
225 endif
226endif
227
228if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
229 VirtualBox_LDFLAGS.win += /DelayLoad:QtOpenGLVBox4.dll /DelayLoad:OPENGL32.dll
230endif
231
232VirtualBox_LDFLAGS.darwin = \
233 -framework AppKit -framework Carbon \
234 $(if $(VBOX_WITH_HARDENING),-install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VirtualBox.dylib)
235ifdef VBOX_WITH_ICHAT_THEATER
236 VirtualBox_LDFLAGS.darwin += -framework InstantMessage -framework QuartzCore
237endif
238if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
239 VirtualBox_LDFLAGS.darwin += -framework OpenGL
240endif
241
242VirtualBox_LIBS.win = \
243 $(PATH_SDK_WINPSDK_LIB)/Htmlhelp.Lib \
244 $(PATH_SDK_DXSDK_LIB)/ddraw.lib \
245 $(PATH_SDK_DXSDK_LIB)/dxguid.lib
246if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X11
247 VirtualBox_LIBS += $(PATH_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL)
248endif
249
250if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
251 VirtualBox_LIBS.win += $(PATH_SDK_WINPSDK_LIB)/Opengl32.lib
252 VirtualBox_LIBS.solaris += GL
253 VirtualBox_LIBS.linux += GL
254 VirtualBox_LIBS.freebsd += GL
255endif
256
257# Headers containing definitions of classes that use the Q_OBJECT macro.
258VirtualBox_QT_MOCHDRS = \
259 src/VBoxAboutDlg.h \
260 src/VBoxGlobalSettings.h \
261 src/VBoxMediaManagerDlg.h \
262 src/VBoxSnapshotDetailsDlg.h \
263 src/VBoxTakeSnapshotDlg.h \
264 src/VBoxUpdateDlg.h \
265 src/VBoxVMInformationDlg.h \
266 src/VBoxVMLogViewer.h \
267 src/VBoxLicenseViewer.h \
268 src/globals/VBoxGlobal.h \
269 src/globals/VBoxProblemReporter.h \
270 src/globals/VBoxUtils.h \
271 src/globals/UIMainEventListener.h \
272 src/globals/UIExtraDataEventHandler.h \
273 src/extensions/QIAdvancedSlider.h \
274 src/extensions/QIArrowButtonPress.h \
275 src/extensions/QIArrowButtonSwitch.h \
276 src/extensions/QIArrowSplitter.h \
277 src/extensions/QIDialog.h \
278 src/extensions/QIFileDialog.h \
279 src/extensions/QIHttp.h \
280 src/extensions/QILabel.h \
281 src/extensions/QILabelSeparator.h \
282 src/extensions/QIListView.h \
283 src/extensions/QIMainDialog.h \
284 src/extensions/QIMessageBox.h \
285 src/extensions/QIRichToolButton.h \
286 src/extensions/QISplitter.h \
287 src/extensions/QIStateIndicator.h \
288 src/extensions/QIStatusBar.h \
289 src/extensions/QITabWidget.h \
290 src/extensions/QIToolButton.h \
291 src/extensions/QITableView.h \
292 src/extensions/QITreeView.h \
293 src/extensions/QITreeWidget.h \
294 src/extensions/QIWidgetValidator.h \
295 src/extensions/QIWizard.h \
296 src/settings/UISettingsDialog.h \
297 src/settings/UISettingsDialogSpecific.h \
298 src/settings/UISettingsPage.h \
299 src/settings/VBoxSettingsSelector.h \
300 src/settings/global/UIGlobalSettingsGeneral.h \
301 src/settings/global/UIGlobalSettingsInput.h \
302 src/settings/global/UIGlobalSettingsUpdate.h \
303 src/settings/global/UIGlobalSettingsLanguage.h \
304 src/settings/global/UIGlobalSettingsNetwork.h \
305 src/settings/global/UIGlobalSettingsNetworkDetails.h \
306 src/settings/global/UIGlobalSettingsExtension.h \
307 src/settings/machine/UIMachineSettingsGeneral.h \
308 src/settings/machine/UIMachineSettingsSystem.h \
309 src/settings/machine/UIMachineSettingsDisplay.h \
310 src/settings/machine/UIMachineSettingsStorage.h \
311 src/settings/machine/UIMachineSettingsAudio.h \
312 src/settings/machine/UIMachineSettingsNetwork.h \
313 src/settings/machine/UIMachineSettingsPortForwardingDlg.h \
314 src/settings/machine/UIMachineSettingsSerial.h \
315 src/settings/machine/UIMachineSettingsParallel.h \
316 src/settings/machine/UIMachineSettingsUSB.h \
317 src/settings/machine/UIMachineSettingsUSBFilterDetails.h \
318 src/settings/machine/UIMachineSettingsSF.h \
319 src/settings/machine/UIMachineSettingsSFDetails.h \
320 src/wizards/newvm/UINewVMWzd.h \
321 src/wizards/newhd/UINewHDWzd.h \
322 src/wizards/firstrun/UIFirstRunWzd.h \
323 src/wizards/exportappliance/UIExportApplianceWzd.h \
324 src/wizards/importappliance/UIImportApplianceWzd.h \
325 src/widgets/UIBar.h \
326 src/widgets/UIBootTable.h \
327 src/widgets/UIDownloader.h \
328 src/widgets/UIDownloaderAdditions.h \
329 src/widgets/UIDownloaderUserManual.h \
330 src/widgets/UIHotKeyEditor.h \
331 src/widgets/UIPopupBox.h \
332 src/widgets/UIProgressDialog.h \
333 src/widgets/UISpacerWidgets.h \
334 src/widgets/UISpecialControls.h \
335 src/widgets/VBoxApplianceEditorWgt.h \
336 src/widgets/VBoxExportApplianceWgt.h \
337 src/widgets/VBoxFilePathSelectorWidget.h \
338 src/widgets/VBoxImportApplianceWgt.h \
339 src/widgets/VBoxLineTextEdit.h \
340 src/widgets/VBoxMediaComboBox.h \
341 src/widgets/VBoxMiniToolBar.h \
342 src/widgets/VBoxOSTypeSelectorButton.h \
343 src/widgets/VBoxOSTypeSelectorWidget.h \
344 src/widgets/VBoxWarningPane.h \
345 src/selector/UIVMDesktop.h \
346 src/selector/UIVMListView.h \
347 src/selector/UIVMPreviewWindow.h \
348 src/selector/UIVMItem.h \
349 src/selector/UIVirtualBoxEventHandler.h \
350 src/selector/VBoxSelectorWnd.h \
351 src/selector/VBoxSnapshotsWgt.h \
352 src/runtime/UIActionsPool.h \
353 src/runtime/UIConsoleEventHandler.h \
354 src/runtime/UIIndicatorsPool.h \
355 src/runtime/UIKeyboardHandler.h \
356 src/runtime/UIMachine.h \
357 src/runtime/UIMachineLogic.h \
358 src/runtime/UIMachineView.h \
359 src/runtime/UIMouseHandler.h \
360 src/runtime/UIMultiScreenLayout.h \
361 src/runtime/UISession.h \
362 src/runtime/UIVMCloseDialog.h \
363 src/runtime/fullscreen/UIKeyboardHandlerFullscreen.h \
364 src/runtime/fullscreen/UIMachineLogicFullscreen.h \
365 src/runtime/fullscreen/UIMachineViewFullscreen.h \
366 src/runtime/fullscreen/UIMachineWindowFullscreen.h \
367 src/runtime/normal/UIKeyboardHandlerNormal.h \
368 src/runtime/normal/UIMachineLogicNormal.h \
369 src/runtime/normal/UIMachineViewNormal.h \
370 src/runtime/normal/UIMachineWindowNormal.h \
371 src/runtime/scale/UIKeyboardHandlerScale.h \
372 src/runtime/scale/UIMachineLogicScale.h \
373 src/runtime/scale/UIMachineViewScale.h \
374 src/runtime/scale/UIMachineWindowScale.h \
375 src/runtime/seamless/UIKeyboardHandlerSeamless.h \
376 src/runtime/seamless/UIMachineLogicSeamless.h \
377 src/runtime/seamless/UIMachineViewSeamless.h \
378 src/runtime/seamless/UIMachineWindowSeamless.h
379
380VirtualBox_QT_MOCHDRS.darwin += \
381 src/platform/darwin/UIWindowMenuManager.h
382
383# Sources containing local definitions of classes that use the Q_OBJECT macro.
384VirtualBox_QT_MOCSRCS = \
385 src/VBoxMediaManagerDlg.cpp \
386 src/globals/UIExtraDataEventHandler.cpp \
387 src/extensions/QISplitter.cpp \
388 src/selector/UIVMDesktop.cpp \
389 src/settings/UISettingsDialogSpecific.cpp \
390 src/settings/machine/UIMachineSettingsStorage.cpp \
391 src/settings/machine/UIMachineSettingsPortForwardingDlg.cpp \
392 src/runtime/UIActionsPool.cpp \
393 src/runtime/UIIndicatorsPool.cpp \
394 src/runtime/UIMachine.cpp \
395 src/runtime/UIMachineLogic.cpp \
396 src/runtime/UIMachineMenuBar.cpp
397
398VirtualBox_QT_MOCSRCS.darwin += \
399 src/platform/darwin/UIWindowMenuManager.cpp
400VirtualBox_QT_MOCSRCS.win += \
401 src/extensions/QIFileDialog.cpp
402
403ifdef VBOX_WITH_REGISTRATION
404 VirtualBox_QT_MOCHDRS += \
405 src/wizards/registration/UIRegistrationWzd.h
406endif
407
408ifdef VBOX_WITH_XPCOM
409 VirtualBox_QT_MOCSRCS += \
410 src/globals/COMDefs.cpp
411endif
412
413ifdef VBOX_WITH_REGISTRATION
414 VirtualBox_QT_MOCSRCS += \
415 src/wizards/registration/UIRegistrationWzd.cpp
416endif
417
418VirtualBox_SOURCES = \
419 src/main.cpp \
420 src/VBoxAboutDlg.cpp \
421 src/VBoxGlobalSettings.cpp \
422 src/VBoxHelpActions.cpp \
423 src/VBoxMediaManagerDlg.cpp \
424 src/VBoxMedium.cpp \
425 src/VBoxSnapshotDetailsDlg.cpp \
426 src/VBoxTakeSnapshotDlg.cpp \
427 src/VBoxUpdateDlg.cpp \
428 src/VBoxVMInformationDlg.cpp \
429 src/VBoxVMLogViewer.cpp \
430 src/VBoxLicenseViewer.cpp \
431 src/globals/COMDefs.cpp \
432 src/globals/VBoxDefs.cpp \
433 src/globals/VBoxGlobal.cpp \
434 src/globals/VBoxProblemReporter.cpp \
435 src/globals/UIIconPool.cpp \
436 src/globals/UIMainEventListener.cpp \
437 src/globals/UIExtraDataEventHandler.cpp \
438 src/globals/UIImageTools.cpp \
439 src/extensions/QIAdvancedSlider.cpp \
440 src/extensions/QIArrowButtonPress.cpp \
441 src/extensions/QIArrowButtonSwitch.cpp \
442 src/extensions/QIArrowSplitter.cpp \
443 src/extensions/QIDialog.cpp \
444 src/extensions/QIDialogButtonBox.cpp \
445 src/extensions/QIFileDialog.cpp \
446 src/extensions/QILabel.cpp \
447 src/extensions/QILabelSeparator.cpp \
448 src/extensions/QILineEdit.cpp \
449 src/extensions/QIListView.cpp \
450 src/extensions/QIMainDialog.cpp \
451 src/extensions/QIMessageBox.cpp \
452 src/extensions/QIRichToolButton.cpp \
453 src/extensions/QISplitter.cpp \
454 src/extensions/QIStateIndicator.cpp \
455 src/extensions/QIStatusBar.cpp \
456 src/extensions/QITableView.cpp \
457 src/extensions/QITreeView.cpp \
458 src/extensions/QITreeWidget.cpp \
459 src/extensions/QIWidgetValidator.cpp \
460 src/extensions/QIWizard.cpp \
461 src/settings/UISettingsDialog.cpp \
462 src/settings/UISettingsDialogSpecific.cpp \
463 src/settings/UISettingsPage.cpp \
464 src/settings/VBoxSettingsSelector.cpp \
465 src/settings/global/UIGlobalSettingsGeneral.cpp \
466 src/settings/global/UIGlobalSettingsInput.cpp \
467 src/settings/global/UIGlobalSettingsUpdate.cpp \
468 src/settings/global/UIGlobalSettingsLanguage.cpp \
469 src/settings/global/UIGlobalSettingsNetwork.cpp \
470 src/settings/global/UIGlobalSettingsNetworkDetails.cpp \
471 src/settings/global/UIGlobalSettingsExtension.cpp \
472 src/settings/machine/UIMachineSettingsGeneral.cpp \
473 src/settings/machine/UIMachineSettingsSystem.cpp \
474 src/settings/machine/UIMachineSettingsDisplay.cpp \
475 src/settings/machine/UIMachineSettingsStorage.cpp \
476 src/settings/machine/UIMachineSettingsAudio.cpp \
477 src/settings/machine/UIMachineSettingsNetwork.cpp \
478 src/settings/machine/UIMachineSettingsPortForwardingDlg.cpp \
479 src/settings/machine/UIMachineSettingsSerial.cpp \
480 src/settings/machine/UIMachineSettingsParallel.cpp \
481 src/settings/machine/UIMachineSettingsUSB.cpp \
482 src/settings/machine/UIMachineSettingsUSBFilterDetails.cpp \
483 src/settings/machine/UIMachineSettingsSF.cpp \
484 src/settings/machine/UIMachineSettingsSFDetails.cpp \
485 src/wizards/newvm/UINewVMWzd.cpp \
486 src/wizards/newhd/UINewHDWzd.cpp \
487 src/wizards/firstrun/UIFirstRunWzd.cpp \
488 src/wizards/exportappliance/UIExportApplianceWzd.cpp \
489 src/wizards/importappliance/UIImportApplianceWzd.cpp \
490 src/widgets/UIBar.cpp \
491 src/widgets/UIBootTable.cpp \
492 src/widgets/UIDownloader.cpp \
493 src/widgets/UIDownloaderAdditions.cpp \
494 src/widgets/UIDownloaderUserManual.cpp \
495 src/widgets/UIHotKeyEditor.cpp \
496 src/widgets/UIPopupBox.cpp \
497 src/widgets/UIProgressDialog.cpp \
498 src/widgets/UISpecialControls.cpp \
499 src/widgets/UIToolBar.cpp \
500 src/widgets/VBoxApplianceEditorWgt.cpp \
501 src/widgets/VBoxExportApplianceWgt.cpp \
502 src/widgets/VBoxFilePathSelectorWidget.cpp \
503 src/widgets/VBoxGuestRAMSlider.cpp \
504 src/widgets/VBoxImportApplianceWgt.cpp \
505 src/widgets/VBoxLineTextEdit.cpp \
506 src/widgets/VBoxMediaComboBox.cpp \
507 src/widgets/VBoxMiniToolBar.cpp \
508 src/widgets/VBoxOSTypeSelectorButton.cpp \
509 src/widgets/VBoxOSTypeSelectorWidget.cpp \
510 src/widgets/VBoxWarningPane.cpp \
511 src/selector/UISelectorShortcuts.cpp \
512 src/selector/UIVMDesktop.cpp \
513 src/selector/UIVMItem.cpp \
514 src/selector/UIVMListView.cpp \
515 src/selector/UIVMPreviewWindow.cpp \
516 src/selector/UIVirtualBoxEventHandler.cpp \
517 src/selector/VBoxSelectorWnd.cpp \
518 src/selector/VBoxSnapshotsWgt.cpp \
519 src/runtime/UIActionsPool.cpp \
520 src/runtime/UIConsoleEventHandler.cpp \
521 src/runtime/UIFrameBuffer.cpp \
522 src/runtime/UIFrameBufferQGL.cpp \
523 src/runtime/UIFrameBufferQImage.cpp \
524 src/runtime/UIFrameBufferSDL.cpp \
525 src/runtime/UIIndicatorsPool.cpp \
526 src/runtime/UIKeyboardHandler.cpp \
527 src/runtime/UIMachine.cpp \
528 src/runtime/UIMachineLogic.cpp \
529 src/runtime/UIMachineMenuBar.cpp \
530 src/runtime/UIMachineShortcuts.cpp \
531 src/runtime/UIMachineView.cpp \
532 src/runtime/UIMachineWindow.cpp \
533 src/runtime/UIMouseHandler.cpp \
534 src/runtime/UIMultiScreenLayout.cpp \
535 src/runtime/UISession.cpp \
536 src/runtime/UIVMCloseDialog.cpp \
537 src/runtime/fullscreen/UIKeyboardHandlerFullscreen.cpp \
538 src/runtime/fullscreen/UIMachineLogicFullscreen.cpp \
539 src/runtime/fullscreen/UIMachineViewFullscreen.cpp \
540 src/runtime/fullscreen/UIMachineWindowFullscreen.cpp \
541 src/runtime/normal/UIKeyboardHandlerNormal.cpp \
542 src/runtime/normal/UIMachineLogicNormal.cpp \
543 src/runtime/normal/UIMachineViewNormal.cpp \
544 src/runtime/normal/UIMachineWindowNormal.cpp \
545 src/runtime/scale/UIKeyboardHandlerScale.cpp \
546 src/runtime/scale/UIMachineLogicScale.cpp \
547 src/runtime/scale/UIMachineViewScale.cpp \
548 src/runtime/scale/UIMachineWindowScale.cpp \
549 src/runtime/seamless/UIKeyboardHandlerSeamless.cpp \
550 src/runtime/seamless/UIMachineLogicSeamless.cpp \
551 src/runtime/seamless/UIMachineViewSeamless.cpp \
552 src/runtime/seamless/UIMachineWindowSeamless.cpp
553
554VirtualBox_SOURCES.win += \
555 src/runtime/UIFrameBufferDirectDraw.cpp
556VirtualBox_SOURCES.darwin += \
557 src/runtime/UIFrameBufferQuartz2D.cpp \
558 src/platform/darwin/UIAbstractDockIconPreview.cpp \
559 src/platform/darwin/UIWindowMenuManager.cpp \
560 src/platform/darwin/UICocoaDockIconPreview.mm
561
562if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X11
563 VirtualBox_SOURCES += \
564 src/platform/x11/XKeyboard-new.cpp \
565 src/platform/x11/VBoxX11Helper.cpp \
566 src/platform/x11/UIDesktopServices_x11.cpp
567endif
568
569ifdef VBOX_WITH_REGISTRATION
570 VirtualBox_SOURCES += \
571 src/wizards/registration/UIRegistrationWzd.cpp
572endif
573
574VirtualBox_SOURCES.win += \
575 src/platform/win/VirtualBox.rc \
576 src/platform/win/UIDesktopServices_win.cpp
577
578VirtualBox_DEFS.darwin += VBOX_DARWIN_USE_NATIVE_CONTROLS
579VirtualBox_SOURCES.darwin += \
580 src/platform/darwin/DarwinKeyboard.cpp \
581 src/platform/darwin/CocoaEventHelper.mm \
582 src/platform/darwin/UICocoaApplication.mm \
583 src/platform/darwin/VBoxUtils-darwin-cocoa.mm \
584 src/platform/darwin/VBoxUtils-darwin.cpp \
585 src/platform/darwin/UICocoaSpecialControls.mm \
586 src/platform/darwin/UIDesktopServices_darwin.cpp \
587 src/platform/darwin/UIDesktopServices_darwin_cocoa.mm
588VirtualBox_QT_MOCHDRS.darwin += \
589 src/platform/darwin/UICocoaSpecialControls.h
590
591ifdef VBOX_WITH_ICHAT_THEATER
592 VirtualBox_SOURCES.darwin += \
593 src/platform/darwin/VBoxIChatTheaterWrapper.m
594endif
595
596ifdef VBOX_GUI_WITH_SYSTRAY
597 VirtualBox_DEFS += VBOX_GUI_WITH_SYSTRAY
598 VirtualBox_QT_MOCHDRS += \
599 src/selector/VBoxTrayIcon.h
600 VirtualBox_SOURCES += \
601 src/selector/VBoxTrayIcon.cpp
602endif
603
604if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
605 VirtualBox_SOURCES += \
606 src/VBoxFBQGL.cpp \
607 src/VBoxFBOverlay.cpp \
608 src/VBoxGLSupportInfo.cpp
609endif
610# The Qt modules we're using.
611# (The include directory and lib/framework for each module will be added by the Qt4 unit.)
612VirtualBox_QT_MODULES = Core Gui Network
613
614if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
615 VirtualBox_QT_MODULES += OpenGL
616endif
617
618# Import QDesigner UI sources and translations from VBoxUI.pro.
619ifndef VBOX_WITH_REGISTRATION
620 FORMS := $(filter-out src/wizards/registration/UIRegistrationWzdPage1.ui,$(FORMS))
621endif
622$(eval VirtualBox_SOURCES += $(FORMS))
623
624# Resource files with some OSE differences (VirtualBoxBrand.qrc is created further down).
625VirtualBox_SOURCES += VirtualBox1.qrc
626VirtualBox1.qrc_RCCFLAGS = -name BASIC1
627VirtualBox_SOURCES += VirtualBox2.qrc
628VirtualBox2.qrc_RCCFLAGS = -name BASIC2
629ifeq ($(KBUILD_TARGET),darwin)
630 VirtualBox_SOURCES += VirtualBoxMac.qrc
631 VirtualBoxMac.qrc_RCCFLAGS = -name MAC
632else
633 VirtualBox_SOURCES += VirtualBoxOther.qrc
634 VirtualBoxOther.qrc_RCCFLAGS = -name OTHER
635endif
636VirtualBox_SOURCES += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
637$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc_RCCFLAGS = -name BRAND
638if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
639 VirtualBox_SOURCES += VirtualBoxShaders.qrc
640 VirtualBoxShaders.qrc_RCCFLAGS = -name SHADERS
641endif
642
643# Import the translation source from VBoxUI.pro and add the qt_xx_YY counterparts
644VirtualBox_QT_TRANSLATIONS := $(TRANSLATIONS) \
645 $(patsubst nls/VirtualBox_%.ts,nls/qt_%.ts, $(filter nls/VirtualBox_%.ts,$(TRANSLATIONS)))
646# Compress the translation units.
647VirtualBox_LRCFLAGS = -silent
648# Where to install the translations (a separate install target, VirtualBox-nls-inst is created).
649VirtualBox_QT_TRANSLATIONS_INST = $(INST_BIN)nls/
650
651
652## @todo how to detect what tool is used?
653## @todo GCC3 seems to lack -Wno-missing-base-class-initializer, so we use
654# more generic -Wno-extra
655# bird: What about $(if $(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-extra))?
656ifdef VBOX_WITH_XPCOM
657 VirtualBox_src/globals/COMDefs.cpp_CXXFLAGS = $(VBOX_GCC_Wno-extra)
658endif
659
660
661#
662# Generate the COM wrappers.
663#
664## @todo This needs some cleaning up perhaps...
665## @todo kBuild: Non-existing +| targets should be tried remade or what?
666VirtualBox_BLDDIRS += $(VirtualBox_0_OUTDIR)/include
667VirtualBox_INTERMEDIATES += $(VirtualBox_0_OUTDIR)/include/COMWrappers.h
668VirtualBox_CLEAN += \
669 $(VirtualBox_0_OUTDIR)/include/COMWrappers \
670 $(VirtualBox_0_OUTDIR)/include/COMWrappers.tmp \
671 $(VirtualBox_0_OUTDIR)/include/COMWrappers.h \
672 $(VirtualBox_0_OUTDIR)/include/COMWrappers.cpp
673VirtualBox_SOURCES += $(VirtualBox_0_OUTDIR)/include/COMWrappers.cpp
674
675$$(VirtualBox_0_OUTDIR)/include/COMWrappers \
676+| $$(VirtualBox_0_OUTDIR)/include/COMWrappers.h \
677+| $$(VirtualBox_0_OUTDIR)/include/COMWrappers.cpp: \
678 $(VBOX_XIDL_FILE) \
679 $(VBOX_VIRTUALBOX4_SRC)/src/globals/COMWrappers.xsl \
680 | $$(dir $$@)
681 $(call MSG_GENERATE,VirtualBox,$<,$@)
682 $(QUIET)$(RM) -f $@ $@.tmp $@.h $@.cpp
683 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_VIRTUALBOX4_SRC)/src/globals/COMWrappers.xsl $<
684
685 $(QUIET)$(SED) -e '1,/\/\/ wrapper definitions/ !d' \
686 --output $@.tmp $@
687 $(QUIET)$(CP) --changed $@.tmp $@.h
688
689 $(QUIET)$(APPEND) -t -n $@.tmp \
690 '/*' \
691 ' * DO NOT EDIT! This is a generated file, see COMWrappers.h for details.' \
692 ' */' \
693 '' \
694 '#include "VBoxGlobal.h"' \
695 ''
696 $(QUIET)$(SED) -e '/\/\/ wrapper definitions/,9999999 !d' \
697 -e 's/^inline //' \
698 --append $@.tmp $@
699 $(QUIET)$(CP) --changed $@.tmp $@.cpp
700 $(QUIET)$(RM) -f $@.tmp
701
702
703# alias for generating the COM Wrappers file.
704testwrappers:: $$(VirtualBox_0_OUTDIR)/include/COMWrappers.h
705
706
707#
708# Generate qrc file with branded icons.
709#
710VirtualBox_BLDDIRS += $(VBOX_VIRTUALBOX4_OUT_DIR)
711VirtualBox_CLEAN += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
712$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc: \
713 $(VBOX_VIRTUALBOX4_SRC)/VirtualBoxBrand.qrc \
714 | $$(dir $$@)
715 $(call MSG_GENERATE,VirtualBox,$<,$@)
716 $(QUIET)$(SED) \
717 -e 's;@VBOX_ABOUT_PNG@;$(VBOX_BRAND_GUI_ABOUT_PNG);g' \
718 -e 's;@VBOX_ABOUT_16PX_PNG@;$(VBOX_BRAND_GUI_ABOUT_16PX_PNG);g' \
719 -e 's;@VBOX_VBOX_16PX_PNG@;$(VBOX_BRAND_GUI_VBOX_16PX_PNG);g' \
720 -e 's;@VBOX_VBOX_20PX_PNG@;$(VBOX_BRAND_GUI_VBOX_20PX_PNG);g' \
721 -e 's;@VBOX_VBOX_32PX_PNG@;$(VBOX_BRAND_GUI_VBOX_32PX_PNG);g' \
722 -e 's;@VBOX_VBOX_40PX_PNG@;$(VBOX_BRAND_GUI_VBOX_40PX_PNG);g' \
723 -e 's;@VBOX_VBOX_48PX_PNG@;$(VBOX_BRAND_GUI_VBOX_48PX_PNG);g' \
724 -e 's;@VBOX_VBOX_64PX_PNG@;$(VBOX_BRAND_GUI_VBOX_64PX_PNG);g' \
725 -e 's;@VBOX_CUBE_42PX_PNG@;$(VBOX_BRAND_GUI_CUBE_42PX_PNG);g' \
726 --output $@ \
727 $<
728
729
730#
731# Precompiled header - non-functional atm.
732#
733ifdef VBOX_WITH_PRECOMPILED_HEADERS
734VirtualBox_INCS <= $(VirtualBox_0_OUTDIR)/include
735VirtualBox_DEFS += VBOX_WITH_PRECOMPILED_HEADERS
736VirtualBox_CXXFLAGS += -Winvalid-pch -fpch-preprocess
737VirtualBox_INTERMEDIATES += $(VirtualBox_0_OUTDIR)/include/precomp.h.gch
738
739tstx: $$(VirtualBox_0_OUTDIR)/include/precomp.h.gch
740
741$$(VirtualBox_0_OUTDIR)/include/precomp.h.gch: \
742 $(PATH_SUB_CURRENT)/src/precomp.h \
743 $$(VirtualBox_0_OUTDIR)/include/COMWrappers.h \
744 $$(filter %.gen.h, $$(VirtualBox_INTERMEDIATES) ) \
745 $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h \
746 | $$(dir $$@)
747 time 'g++-4.0' \
748 '-c' \
749 '-g' \
750 $(if-expr "$(KBUILD_TYPE)" == "debug", , -O2 ) \
751 '-pipe' \
752 '-Wall' \
753 '-Wextra' \
754 '-Wno-missing-field-initializers' \
755 '-Wno-trigraphs' \
756 '-frtti' \
757 '-fno-exceptions' \
758 '-Wno-non-virtual-dtor' \
759 '-Wno-long-long' \
760 \
761 '-fshort-wchar' \
762 '-fno-strict-aliasing' \
763 '-fvisibility=hidden' \
764 '-DVBOX_HAVE_VISIBILITY_HIDDEN' \
765 '-DRT_USE_VISIBILITY_DEFAULT' \
766 '-fvisibility-inlines-hidden' \
767 '-Winvalid-pch' \
768 '-fpch-preprocess' \
769 \
770 '-F$(PATH_SDK_QT4)/Frameworks' \
771 '-mmacosx-version-min=10.5' \
772 '-isysroot' \
773 '/Developer/SDKs/MacOSX10.5.sdk' \
774 '-m32' \
775 \
776 $(foreach inc,$(VirtualBox_INCS),\$(NL)$(TAB)-I$(inc)) \
777 '-I$(PATH_ROOT)/include' \
778 '-I$(PATH_OUT)' \
779 '-DVBOX' \
780 '-DVBOX_WITH_DEBUGGER' \
781 '-DVBOX_WITH_64_BITS_GUESTS' \
782 $(if-expr "$(KBUILD_TYPE)" == "debug", '-DDEBUG' '-DDEBUG_bird' '-DDEBUG_USERNAME=bird' '-DVBOX_CHECK_STATE' ,) \
783 '-DRT_OS_DARWIN' \
784 '-D__DARWIN__' \
785 '-DRT_ARCH_X86' \
786 '-D__X86__' \
787 '-DIN_RING3' \
788 '-DQT_NO_DEBUG' \
789 '-DQT_THREAD_SUPPORT' \
790 '-DQT_SHARED' \
791 '-DHAVE_CONFIG_H' \
792 '-DHC_ARCH_BITS=32' \
793 '-DGC_ARCH_BITS=64' \
794 '-DVBOX_WITH_XPCOM' \
795 '-DVBOX_WITH_REGISTRATION' \
796 '-DVBOX_WITH_REGISTRATION_REQUEST' \
797 '-DVBOX_WITH_UPDATE_REQUEST' \
798 '-DVBOX_WITH_ALSA' \
799 '-DVBOX_WITH_PULSE' \
800 '-DVBOX_WITH_E1000' \
801 '-DVBOX_WITH_NETFLT' \
802 '-DVBOX_WITH_DEBUGGER_GUI' \
803 $(if-expr "$(KBUILD_TYPE)" != "release", '-DVBOX_WITH_DEBUGGER_GUI_MENU', ) \
804 '-DVBOX_WITH_VIDEOHWACCEL' \
805 '-DVBOX_GUI_USE_QGL' \
806 '-DVBOX_WITH_VIRTIO' \
807 '-DVBOX_WITH_PRECOMPILED_HEADERS' \
808 '-DVBOX_DARWIN_USE_NATIVE_CONTROLS' \
809 '-DQT_CORE_LIB' \
810 '-DQT_GUI_LIB' \
811 '-DQT_NETWORK_LIB' \
812 '-DQT_OPENGL_LIB' \
813 '-DMAC_OS_X_VERSION_MIN_REQUIRED=1050' \
814 '-DMAC_OS_X_VERSION_MAX_ALLOWED=1050' \
815 '-DVBOX_GUI_USE_QUARTZ2D' \
816 '-DVBOX_GUI_USE_QIMAGE' \
817 '-o' $@ $<
818endif
819
820ifeq ($(KBUILD_TARGET),win)
821#
822# On Windows we'll have to generate/edit part of the resource file.
823# The IDI_ICON1 name is Qt specific.
824#
825src/platform/win/VirtualBox.rc_INCS = $(VirtualBox_0_OUTDIR)
826src/platform/win/VirtualBox.rc_DEPS = $(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc
827src/platform/win/VirtualBox.rc_CLEAN = $(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc
828
829$$(VirtualBox_0_OUTDIR)/VirtualBox-icon.rc: $(MAKEFILE_CURRENT) $(VBOX_WINDOWS_ICON_FILE) | $$(dir $$@)
830 $(APPEND) -t $@ 'IDI_ICON1 ICON "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
831
832endif # win
833
834
835ifeq ($(KBUILD_TARGET),darwin)
836#
837# Create directories for each approved language or the application
838# menu won't be translated.
839#
840INSTALLS += VirtualBox.lproj
841VirtualBox.lproj_INST = $(INST_VIRTUALBOX)Contents/Resources/
842VirtualBox.lproj_MODE = 755
843VirtualBox.lproj_DIRS := $(addsuffix .lproj,$(VBOX_APPROVED_GUI_LANGUAGES))
844
845#
846# On OS X (darwin) we need to install icon resources and compulsory bundle contents.
847# The VirtualBoxVM.app helper is for launching VMs (fixes some issues with the dock).
848#
849INSTALLS += VirtualBox.app
850VirtualBox.app_INST = $(INST_VIRTUALBOX)Contents/
851VirtualBox.app_MODE = 644
852VirtualBox.app_SOURCES = \
853 src/platform/darwin/PkgInfo \
854 $(VirtualBox.app_0_OUTDIR)/Info.plist \
855 $(VBOX_MACOSX_ICON_FILE)=>Resources/virtualbox.icns \
856 $(VBOX_BRAND_GUI_VBOX_64PX_PNG)=>Resources/virtualbox.png \
857 $(PATH_ROOT)/src/VBox/Resources/darwin/virtualbox-vbox.icns=>Resources/virtualbox-vbox.icns \
858 $(PATH_ROOT)/src/VBox/Resources/darwin/virtualbox-vbox-extpack.icns=>Resources/virtualbox-vbox-extpack.icns \
859 $(PATH_ROOT)/src/VBox/Resources/darwin/virtualbox-ovf.icns=>Resources/virtualbox-ovf.icns \
860 $(PATH_ROOT)/src/VBox/Resources/darwin/virtualbox-ova.icns=>Resources/virtualbox-ova.icns
861
862$$(VirtualBox.app_0_OUTDIR)/Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/Info.plist $(VBOX_VERSION_MK) | $$(@D)/
863 $(call MSG_GENERATE,VirtualBox.app,$<,$@)
864 $(QUIET)$(RM) -f $@
865 $(QUIET)$(SED) \
866 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
867 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
868 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
869 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
870 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
871 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
872 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
873 $< > $@
874
875INSTALLS += VirtualBoxVM.app
876VirtualBoxVM.app_INST = $(VirtualBox.app_INST)Resources/VirtualBoxVM.app/Contents/
877VirtualBoxVM.app_MODE = 644
878VirtualBoxVM.app_SOURCES = \
879 src/platform/darwin/VM-PkgInfo=>PkgInfo \
880 $(VirtualBoxVM.app_0_OUTDIR)/VM-Info.plist=>Info.plist
881VirtualBoxVM.app_SYMLINKS = \
882 MacOS=>../../../MacOS/ \
883 Resources=>../../../Resources/
884
885$$(VirtualBoxVM.app_0_OUTDIR)/VM-Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/VM-Info.plist $(VBOX_VERSION_MK) | $$(@D)/
886 $(call MSG_GENERATE,VirtualBoxVM.app,$<,$@)
887 $(QUIET)$(RM) -f $@
888 $(QUIET)$(SED) \
889 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
890 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
891 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
892 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
893 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
894 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
895 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
896 --output $@ $<
897
898PROGRAMS += vmstarter
899vmstarter_TEMPLATE = VBOXR3EXE
900vmstarter_SOURCES = src/platform/darwin/vmstarter.mm
901vmstarter_LDFLAGS += -framework AppKit
902vmstarter_INST = $(INST_BIN)vmstarter
903
904INSTALLS += vmstarter.app
905vmstarter.app_INST = $(VirtualBox.app_INST)Resources/vmstarter.app/Contents
906vmstarter.app_MODE = 644
907vmstarter.app_SOURCES = \
908 src/platform/darwin/vmstarter-PkgInfo=>PkgInfo \
909 $(vmstarter.app_0_OUTDIR)/vmstarter-Info.plist=>Info.plist
910vmstarter.app_SYMLINKS = \
911 MacOS=>../../../MacOS \
912 Resources=>../../../Resources
913
914$$(vmstarter.app_0_OUTDIR)/vmstarter-Info.plist: $(PATH_SUB_CURRENT)/src/platform/darwin/vmstarter-Info.plist $(VBOX_VERSION_MK) | $$(@D)/
915 $(call MSG_GENERATE,vmstarter.app,$<,$@)
916 $(QUIET)$(RM) -f $@
917 $(QUIET)$(SED) \
918 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
919 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
920 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
921 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
922 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
923 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
924 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
925 --output $@ $<
926endif # darwin
927
928#
929# App for testing GL support
930#
931if defined(VBOX_WITH_VIDEOHWACCEL)
932 if1of ($(KBUILD_TARGET), win linux freebsd)
933 LIBRARIES += VBoxOGL2D
934 VBoxOGL2D_TEMPLATE = VBOXR3STATIC
935 VBoxOGL2D_USES = qt4
936 VBoxOGL2D_SDKS = QT4
937 VBoxOGL2D_DEFS = IN_RING3 QT_NO_DEBUG QT_THREAD_SUPPORT QT_SHARED HAVE_CONFIG_H $(ARCH_BITS_DEFS) VBOX_WITH_VIDEOHWACCEL VBOX_GUI_USE_QGL
938 VBoxOGL2D_QT_MODULES += OpenGL
939 VBoxOGL2D_SOURCES = \
940 src/VBoxGLSupportInfo.cpp
941 VBoxOGL2D_INCS = include
942 endif
943endif
944
945#
946# Testcase for the darwin keyboard routines.
947#
948ifdef VBOX_WITH_TESTCASES
949PROGRAMS.darwin += tstDarwinKeyboard
950tstDarwinKeyboard_NAME = tstDarwinKeyboard
951tstDarwinKeyboard_TEMPLATE = VBOXR3TSTEXE
952tstDarwinKeyboard_DEFS.x86 = USE_HID_FOR_MODIFIERS
953tstDarwinKeyboard_INCS = include
954tstDarwinKeyboard_SOURCES = \
955 src/platform/darwin/tstDarwinKeyboard.cpp \
956 src/platform/darwin/DarwinKeyboard.cpp
957tstDarwinKeyboard_SOURCES.amd64 = \
958 src/platform/darwin/CocoaEventHelper.mm
959tstDarwinKeyboard_LDFLAGS = -framework IOKit -framework Carbon -framework AppKit
960tstDarwinKeyboard_LIBS = \
961 $(LIB_RUNTIME)
962endif
963
964
965# Unset everything that was loaded from VBoxUI.pro.
966TEMPLATE := $(SAVED_TEMPLATE)
967SAVED_TEMPLATE :=
968LANGUAGE :=
969FORMS :=
970TRANSLATIONS :=
971IMAGES :=
972
973
974# Commit the magic.
975# (note: before custom rules that make usage of generated variables!).
976include $(KBUILD_PATH)/subfooter.kmk
977
978#
979# Update all known NLS translation (.ts) files in the nls/ subdirectory.
980#
981# NOTE: This target is intended to be run only by the GUI maintainer shortly
982# before a new product release. VirtualBox_xx_YY.ts is a template for new
983# languages and should never be actually translated or installed.
984#
985# For Qt >= 4.6.0 it maybe necessary to add -I $(VBOX_GUI_INC_DIRS) to the
986# lupdate call
987#
988#VirtualBox_QT_TRANSLATIONS = nls/VirtualBox_de.ts
989updatenls:: makeallnls nls/VirtualBox_en.ts
990
991makeallnls:: \
992 $(foreach header,$(VBOX_GUI_INC_DIRS),$(wildcard $(header)/*.h)) \
993 $(filter-out %.qrc,$(VirtualBox_SOURCES) $(VirtualBox_VBOX_EXTRA_NLS_SOURCES))
994 $(call MSG_L1,lupdate all languages (nls/*.ts))
995 $(QUIET)$(TOOL_QT4_LUPDATE) \
996 $^ \
997 -ts \
998 $(filter-out nls/VirtualBox_en.ts,$(filter-out nls/qt_%.ts,$(VirtualBox_QT_TRANSLATIONS))) \
999 nls/VirtualBox_xx_YY.ts
1000
1001# Create the English translation file. This is something special cause it will
1002# contain the plural forms only.
1003nls/VirtualBox_en.ts: \
1004 $(foreach header,$(VBOX_GUI_INC_DIRS),$(wildcard $(header)/*.h)) \
1005 $(filter-out %.qrc,$(VirtualBox_SOURCES) $(VirtualBox_VBOX_EXTRA_NLS_SOURCES))
1006 $(call MSG_L1,lupdate $@)
1007 $(QUIET)$(TOOL_QT4_LUPDATE) \
1008 $^ \
1009 -ts \
1010 $@
1011 $(QUIET)$(SED) -n -i -e \
1012 '/<context>/,/<\/context>/!p;/<context>/h;/<name>/H;/<message numerus="yes">/,/<\/message>/H;/<\/context>/{H;x;/<message/p}' \
1013 $@
1014
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use