VirtualBox

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

Last change on this file since 34737 was 34737, checked in by vboxsync, 14 years ago

Main;FE/Qt4-OSX: change the icon on the password dialog

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