VirtualBox

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

Last change on this file since 23454 was 23452, checked in by vboxsync, 15 years ago

Makefiles: Corrected properties.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 22.4 KB
Line 
1# $Id: Makefile.kmk 23452 2009-09-30 20:33:08Z vboxsync $
2## @file
3# Makefile for the VirtualBox Qt GUI.
4#
5
6#
7# Copyright (C) 2006-2009 Sun Microsystems, Inc.
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25#
26# Globals.
27#
28VBOX_VIRTUALBOX4_SRC := $(PATH_SUB_CURRENT)
29VBOX_VIRTUALBOX4_OUT_DIR := $(PATH_TARGET)/VirtualBox/misc
30
31VBOX_WITH_REGISTRATION := 1
32
33# Ask the user to register at Sun. If this setting is disabled the user can
34# still register using the menu if desired.
35VBOX_WITH_REGISTRATION_REQUEST := 1
36
37# Show the update notifier dialog during startup. If this setting is disabled
38# the user can still update using the menu if desired.
39VBOX_WITH_UPDATE_REQUEST := 1
40
41
42#
43# The targets.
44#
45ifdef VBOX_WITH_HARDENING
46PROGRAMS += VirtualBoxHardened
47DLLS += VirtualBox
48else
49PROGRAMS += VirtualBox
50endif
51
52ifeq ($(filter-out freebsd linux openbsd netbsd solaris,$(KBUILD_TARGET)),) # X11
53 DLLS += VBoxKeyboard
54 ## @todo convert to install target.
55 OTHERS += $(PATH_BIN)/vboxkeyboard.tar.gz
56 CLEAN += $(PATH_BIN)/vboxkeyboard.tar.gz
57endif
58INSTALLS += VirtualBox.nls
59
60
61#
62# Include the language lists.
63#
64include $(PATH_SUB_CURRENT)/nls/ApprovedLanguages.kmk
65
66
67#
68# VBoxKeyboard - keyboard library for X11.
69#
70VBoxKeyboard_TEMPLATE = VBOXR3
71VBoxKeyboard_SOURCES = \
72 src/X11/keyboard-new.c
73VBoxKeyboard_LIBS = X11
74VBoxKeyboard_LIBPATH = $(VBOX_LIBPATH_X11)
75
76
77#
78# vboxkeyboard.tar.gz - the LGPLed keyboard library must always be
79# redistributed with usable sources.
80#
81# This rule will link create a temporary symlink to src/X11/ and tar
82# up the selected files into a tarball that is installed into the
83# bin directory (probably belongs in /usr/shared/somewhere really,
84# but wtf, it's not like we're even trying to be FHS compliant).
85#
86## @todo this should be tar'ed down into the output directory and installed using an install target.
87$(PATH_BIN)/vboxkeyboard.tar.gz: $(abspathex \
88 $(VBoxKeyboard_SOURCES) \
89 src/X11/COPYING.LIB \
90 src/X11/keyboard.h \
91 src/X11/keyboard-layouts.h \
92 src/X11/keyboard-list.h \
93 src/X11/keyboard-tables.h \
94 src/X11/keyboard-types.h \
95 src/X11/Makefile \
96 ,$(PATH_SUB_CURRENT)) | $(PATH_TARGET)/VBoxKeyboard/
97 $(call MSG_TOOL,tar/gzip,,$@)
98 $(QUIET2)$(RM) -f $(PATH_TARGET)/VBoxKeyboard/vboxkeyboard $@
99 $(QUIET)$(LN_SYMLINK) $(VBOX_VIRTUALBOX4_SRC)/src/X11/ $(PATH_TARGET)/VBoxKeyboard/vboxkeyboard
100 $(QUIET)cd $(PATH_TARGET)/VBoxKeyboard \
101 && tar -chvf - $(addprefix vboxkeyboard/,$(notdir $^)) \
102 | gzip - > $@
103 $(QUIET2)$(RM) -f $(PATH_TARGET)/VBoxKeyboard/vboxkeyboard
104
105OTHER_CLEAN += \
106 $(PATH_BIN)/vboxkeyboard.tar.gz
107
108
109#
110# Hardened VirtualBox.
111#
112VirtualBoxHardened_TEMPLATE = VBOXR3HARDENEDEXE
113VirtualBoxHardened_SOURCES = src/hardenedmain.cpp
114VirtualBoxHardened_NAME = VirtualBox
115ifeq ($(KBUILD_TARGET),darwin) ## @todo use .darwin when ticket 36 has been fixed.
116 #VirtualBoxHardened_INST.darwin = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
117 VirtualBoxHardened_INST = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
118endif
119
120
121#
122# Include Qt project file, we'll use FORMS and TRANSLATIONS in
123# the VirtualBox setup below.
124#
125SAVED_TEMPLATE := $(TEMPLATE)
126include $(PATH_SUB_CURRENT)/VBoxUI.pro
127
128
129#
130# VirtualBox - The GUI program.
131#
132USES += qt4
133VirtualBox_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXQT4GUI,VBOXQT4GUIEXE)
134VirtualBox_NAME = VirtualBox
135ifndef VBOX_WITH_HARDENING # For the launch trick we need different inode numbers.
136 ifeq ($(KBUILD_TARGET),darwin) ## @todo use .darwin when ticket 36 has been fixed.
137 #VirtualBox_INST.darwin = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
138 VirtualBox_INST = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM
139 endif
140endif
141VirtualBox_SDKS.win = WINPSDK DXSDK
142ifeq ($(filter-out freebsd linux netbsd openbsd os2,$(KBUILD_TARGET)),) # X11 + os2 ## @todo solaris
143 VirtualBox_SDKS += LIBSDL
144endif
145
146ifdef VBOX_WITH_ICHAT_THEATER
147 # For testing iChat Theater stuff change the sdk path (HACK ALERT!)
148 VBOX_PATH_MACOSX_SDK = /Developer/SDKs/MacOSX10.5.sdk
149endif
150
151VirtualBox_DEFS = VBOX_GUI_SEPARATE_VM_PROCESS
152VirtualBox_DEFS.debug = VBOX_CHECK_STATE # QT_FATAL_ASSERT
153VirtualBox_DEFS.darwin = VBOX_GUI_USE_QUARTZ2D VBOX_GUI_USE_QIMAGE VBOX_WITHOUT_QHTTP
154ifndef VBOX_WITH_COCOA_QT
155VirtualBox_DEFS.darwin.x86= USE_HID_FOR_MODIFIERS
156endif
157VirtualBox_DEFS.freebsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
158VirtualBox_DEFS.linux = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
159VirtualBox_DEFS.netbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
160VirtualBox_DEFS.openbsd = VBOX_GUI_USE_QIMAGE VBOX_GUI_USE_SDL
161VirtualBox_DEFS.solaris = VBOX_GUI_USE_QIMAGE #VBOX_GUI_USE_SDL
162VirtualBox_DEFS.win = VBOX_GUI_USE_QIMAGE UNICODE QT_DLL
163VirtualBox_DEFS.win.amd64 = VBOX_WITHOUT_QHTTP
164## @todo VBOX_WITH_HACKED_QT doesn't apply to Qt4, so why is this still here?
165VirtualBox_DEFS.darwin.x86 += VBOX_WITH_HACKED_QT
166ifdef VBOX_WITH_ICHAT_THEATER
167 VirtualBox_DEFS.darwin += VBOX_WITH_ICHAT_THEATER
168endif
169ifneq ($(KBUILD_TYPE),release)
170 # non-release builds has some extra features.
171 VirtualBox_DEFS.win += VBOX_GUI_USE_DDRAW
172endif
173VirtualBox_DEFS += \
174 $(if $(VBOX_WITH_REGISTRATION),VBOX_WITH_REGISTRATION) \
175 $(if $(VBOX_WITH_REGISTRATION_REQUEST),VBOX_WITH_REGISTRATION_REQUEST) \
176 $(if $(VBOX_WITH_UPDATE_REQUEST),VBOX_WITH_UPDATE_REQUEST) \
177 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA) \
178 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
179 $(if $(VBOX_WITH_SOLARIS_OSS),VBOX_WITH_SOLARIS_OSS) \
180 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
181 $(if $(VBOX_WITH_NETFLT)$(eq $(KBUILD_TARGET),freebsd),VBOX_WITH_NETFLT)
182ifdef VBOX_WITH_DEBUGGER_GUI
183 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI
184 if "$(KBUILD_TYPE)" != "release"
185 VirtualBox_DEFS += VBOX_WITH_DEBUGGER_GUI_MENU
186 endif
187endif
188ifdef VBOX_WITH_VIDEOHWACCEL
189 VirtualBox_DEFS += VBOX_WITH_VIDEOHWACCEL \
190 VBOX_GUI_USE_QGL
191else ifdef VBOX_GUI_USE_QGL
192 VirtualBox_DEFS += VBOX_GUI_USE_QGL
193endif
194ifdef VBOX_WITH_VIRTIO
195 VirtualBox_DEFS += VBOX_WITH_VIRTIO
196endif
197
198ifdef VBOX_BLEEDING_EDGE
199VirtualBox_src/VBoxConsoleWnd.cpp_DEFS += \
200 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
201VirtualBox_src/VBoxSelectorWnd.cpp_DEFS += \
202 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
203VirtualBox_src/VBoxAboutDlg.cpp_DEFS += \
204 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
205VirtualBox_src/main.cpp_DEFS += \
206 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\"
207endif
208
209VirtualBox_INCS = \
210 ./include \
211 $(PATH_VirtualBox)/include
212
213# Necessary for the hdd backend enumeration
214VirtualBox_LIBS = $(LIB_DDU)
215
216ifdef VBOX_WITH_VIDEOHWACCEL
217# Necessary for save state support
218VirtualBox_LIBS += $(LIB_VMM)
219endif
220ifeq ($(KBUILD_TYPE),release)
221 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
222else
223 VirtualBox_LDFLAGS.linux+= -rdynamic # for backtrace_symbols()
224 ifeq ($(USERNAME),dmik)
225 VirtualBox_LDFLAGS.win += /SUBSYSTEM:windows
226 else
227 VirtualBox_LDFLAGS.win += /SUBSYSTEM:console
228 endif
229endif
230# r=bird: what is -lz doing here? it belongs in LIBS.
231VirtualBox_LDFLAGS.darwin = -lz \
232 -framework IOKit -framework AppKit -framework ApplicationServices -framework Foundation -framework Carbon \
233 $(if $(VBOX_WITH_HARDENING),-install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VirtualBox.dylib)
234VirtualBox_LDFLAGS.darwin.x86 = -framework QuickTime
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
246ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # 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
253endif
254
255# Headers containing definitions of classes that use the Q_OBJECT macro.
256VirtualBox_QT_MOCHDRS = \
257 include/QIHttp.h \
258 include/QIWidgetValidator.h \
259 include/QIHotKeyEdit.h \
260 include/QIStatusBar.h \
261 include/QIStateIndicator.h \
262 include/QIRichToolButton.h \
263 include/QIArrowButtonPress.h \
264 include/QIArrowButtonSwitch.h \
265 include/QIArrowSplitter.h \
266 include/QIMessageBox.h \
267 include/QILabel.h \
268 include/QILabel_p.h \
269 include/QILabelSeparator.h \
270 include/QIAbstractWizard.h \
271 include/QIListView.h \
272 include/QITreeWidget.h \
273 include/QIMainDialog.h \
274 include/QIHelpButton.h \
275 include/QIDialog.h \
276 include/QIFileDialog.h \
277 include/QIAdvancedSlider.h \
278 include/QISplitter.h \
279 include/QITreeView.h \
280 include/QIToolButton.h \
281 include/VBoxFilePathSelectorWidget.h \
282 include/VBoxOSTypeSelectorButton.h \
283 include/VBoxOSTypeSelectorWidget.h \
284 include/VBoxLineTextEdit.h \
285 include/VBoxUtils.h \
286 include/VBoxGlobalSettings.h \
287 include/VBoxGlobal.h \
288 include/VBoxVMListView.h \
289 include/VBoxMediaComboBox.h \
290 include/VBoxSelectorWnd.h \
291 include/VBoxConsoleWnd.h \
292 include/VBoxConsoleView.h \
293 include/VBoxMiniToolBar.h \
294 include/VBoxProblemReporter.h \
295 include/VBoxProgressDialog.h \
296 include/VBoxDownloaderWgt.h \
297 include/VBoxAboutDlg.h \
298 include/VBoxCloseVMDlg.h \
299 include/VBoxNewVMWzd.h \
300 include/VBoxNewHDWzd.h \
301 include/VBoxVMFirstRunWzd.h \
302 include/VBoxRegistrationDlg.h \
303 include/VBoxUpdateDlg.h \
304 include/VBoxSnapshotDetailsDlg.h \
305 include/VBoxVMInformationDlg.h \
306 include/VBoxTakeSnapshotDlg.h \
307 include/VBoxSnapshotsWgt.h \
308 include/VBoxVMLogViewer.h \
309 include/VBoxMediaManagerDlg.h \
310 include/VBoxSettingsUtils.h \
311 include/VBoxVMSettingsGeneral.h \
312 include/VBoxVMSettingsSystem.h \
313 include/VBoxVMSettingsDisplay.h \
314 include/VBoxVMSettingsHD.h \
315 include/VBoxVMSettingsAudio.h \
316 include/VBoxVMSettingsNetwork.h \
317 include/VBoxVMSettingsSerial.h \
318 include/VBoxVMSettingsParallel.h \
319 include/VBoxVMSettingsUSB.h \
320 include/VBoxVMSettingsUSBFilterDetails.h \
321 include/VBoxVMSettingsSF.h \
322 include/VBoxVMSettingsSFDetails.h \
323 include/VBoxGLSettingsGeneral.h \
324 include/VBoxGLSettingsInput.h \
325 include/VBoxGLSettingsUpdate.h \
326 include/VBoxGLSettingsLanguage.h \
327 include/VBoxGLSettingsNetwork.h \
328 include/VBoxGLSettingsNetworkDetails.h \
329 include/VBoxSettingsDialog.h \
330 include/VBoxSettingsDialogSpecific.h \
331 include/VBoxSettingsPage.h \
332 include/VBoxSettingsSelector.h \
333 include/VBoxApplianceEditorWgt.h \
334 include/VBoxImportApplianceWgt.h \
335 include/VBoxImportApplianceWzd.h \
336 include/VBoxExportApplianceWgt.h \
337 include/VBoxExportApplianceWzd.h
338
339# Sources containing local definitions of classes that use the Q_OBJECT macro.
340VirtualBox_QT_MOCSRCS = \
341 src/VBoxSelectorWnd.cpp \
342 src/VBoxConsoleWnd.cpp \
343 src/VBoxMediaManagerDlg.cpp
344ifdef VBOX_WITH_XPCOM
345 VirtualBox_QT_MOCSRCS += \
346 src/COMDefs.cpp
347endif
348ifeq ($(KBUILD_TARGET),win)
349VirtualBox_QT_MOCSRCS += \
350 src/QIFileDialog.cpp
351endif
352
353VirtualBox_SOURCES = \
354 src/main.cpp \
355 src/COMDefs.cpp \
356 src/QIWidgetValidator.cpp \
357 src/QIHotKeyEdit.cpp \
358 src/QIStateIndicator.cpp \
359 src/QIStatusBar.cpp \
360 src/QIRichToolButton.cpp \
361 src/QIArrowButtonSwitch.cpp \
362 src/QIArrowButtonPress.cpp \
363 src/QIArrowSplitter.cpp \
364 src/QIMessageBox.cpp \
365 src/QILabel.cpp \
366 src/QILabelSeparator.cpp \
367 src/QIAbstractWizard.cpp \
368 src/QIDialog.cpp \
369 src/QIFileDialog.cpp \
370 src/QIAdvancedSlider.cpp \
371 src/QIDialogButtonBox.cpp \
372 src/QIListView.cpp \
373 src/QITreeWidget.cpp \
374 src/QIMainDialog.cpp \
375 src/QILineEdit.cpp \
376 src/QIHelpButton.cpp \
377 src/QISplitter.cpp \
378 src/QITreeView.cpp \
379 src/VBoxGuestRAMSlider.cpp \
380 src/VBoxFilePathSelectorWidget.cpp \
381 src/VBoxOSTypeSelectorButton.cpp \
382 src/VBoxOSTypeSelectorWidget.cpp \
383 src/VBoxLineTextEdit.cpp \
384 src/VBoxDefs.cpp \
385 src/VBoxGlobalSettings.cpp \
386 src/VBoxGlobal.cpp \
387 src/VBoxMediaComboBox.cpp \
388 src/VBoxProblemReporter.cpp \
389 src/VBoxProgressDialog.cpp \
390 src/VBoxHelpActions.cpp \
391 src/VBoxSelectorWnd.cpp \
392 src/VBoxConsoleView.cpp \
393 src/VBoxConsoleWnd.cpp \
394 src/VBoxMiniToolBar.cpp \
395 src/VBoxDownloaderWgt.cpp \
396 src/VBoxVMListView.cpp \
397 src/VBoxFrameBuffer.cpp \
398 src/VBoxAboutDlg.cpp \
399 src/VBoxCloseVMDlg.cpp \
400 src/VBoxNewVMWzd.cpp \
401 src/VBoxNewHDWzd.cpp \
402 src/VBoxVMFirstRunWzd.cpp \
403 src/VBoxRegistrationDlg.cpp \
404 src/VBoxUpdateDlg.cpp \
405 src/VBoxSnapshotDetailsDlg.cpp \
406 src/VBoxVMInformationDlg.cpp \
407 src/VBoxTakeSnapshotDlg.cpp \
408 src/VBoxSnapshotsWgt.cpp \
409 src/VBoxVMLogViewer.cpp \
410 src/VBoxVMSettingsGeneral.cpp \
411 src/VBoxVMSettingsSystem.cpp \
412 src/VBoxVMSettingsDisplay.cpp \
413 src/VBoxVMSettingsHD.cpp \
414 src/VBoxVMSettingsAudio.cpp \
415 src/VBoxVMSettingsNetwork.cpp \
416 src/VBoxVMSettingsSerial.cpp \
417 src/VBoxVMSettingsParallel.cpp \
418 src/VBoxVMSettingsUSB.cpp \
419 src/VBoxVMSettingsUSBFilterDetails.cpp \
420 src/VBoxVMSettingsSF.cpp \
421 src/VBoxVMSettingsSFDetails.cpp \
422 src/VBoxGLSettingsGeneral.cpp \
423 src/VBoxGLSettingsInput.cpp \
424 src/VBoxGLSettingsUpdate.cpp \
425 src/VBoxGLSettingsLanguage.cpp \
426 src/VBoxGLSettingsNetwork.cpp \
427 src/VBoxGLSettingsNetworkDetails.cpp \
428 src/VBoxSettingsDialog.cpp \
429 src/VBoxSettingsDialogSpecific.cpp \
430 src/VBoxSettingsSelector.cpp \
431 src/VBoxMediaManagerDlg.cpp \
432 src/VBoxMedium.cpp \
433 src/VBoxApplianceEditorWgt.cpp \
434 src/VBoxImportApplianceWgt.cpp \
435 src/VBoxImportApplianceWzd.cpp \
436 src/VBoxExportApplianceWgt.cpp \
437 src/VBoxExportApplianceWzd.cpp
438
439ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11
440 ifndef VBOX_OSE
441 VirtualBox_QT_MOCHDRS += \
442 include/VBoxLicenseViewer.h
443 VirtualBox_SOURCES += \
444 src/VBoxLicenseViewer.cpp
445 else
446 VirtualBox_VBOX_EXTRA_NLS_SOURCES += \
447 include/VBoxLicenseViewer.h \
448 src/VBoxLicenseViewer.cpp
449 endif
450 VirtualBox_SOURCES += \
451 src/X11/XKeyboard-new.cpp \
452 src/VBoxX11Helper.cpp
453else
454 VirtualBox_VBOX_EXTRA_NLS_SOURCES += \
455 include/VBoxLicenseViewer.h \
456 src/VBoxLicenseViewer.cpp
457endif
458
459VirtualBox_SOURCES.win += \
460 src/VBoxFBDDRAW.cpp \
461 src/win/VirtualBox.rc
462
463VirtualBox_SOURCES.darwin = \
464 src/darwin/DarwinKeyboard.cpp \
465 src/darwin/VBoxUtils-darwin.cpp \
466 src/darwin/VBoxDockIconPreview.cpp \
467 src/VBoxFBQuartz2D.cpp
468
469ifdef VBOX_WITH_ICHAT_THEATER
470 VirtualBox_SOURCES.darwin += \
471 src/darwin/VBoxIChatTheaterWrapper.m
472endif
473
474ifdef VBOX_WITH_COCOA_QT
475 VirtualBox_SOURCES.darwin += \
476 src/darwin/VBoxCocoaApplication.m \
477 src/darwin/VBoxUtils-darwin-cocoa.m \
478 src/darwin/VBoxDockIconPreview-cocoa.m
479else
480 VirtualBox_SOURCES.darwin += \
481 src/darwin/VBoxUtils-darwin-carbon.cpp
482endif
483
484if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
485 VirtualBox_SOURCES += \
486 src/VBoxFBQGL.cpp \
487 src/VBoxFBOverlay.cpp
488endif
489# The Qt modules we're using.
490# (The include directory and lib/framework for each module will be added by the Qt4 unit.)
491VirtualBox_QT_MODULES = Core Gui Network
492
493if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
494VirtualBox_QT_MODULES += OpenGL
495endif
496
497# Import QDesigner UI sources and translations from VBoxUI.pro.
498ifndef VBOX_WITH_REGISTRATION
499 FORMS := $(filter-out ui/VBoxRegistrationDlg.ui,$(FORMS))
500endif
501$(eval VirtualBox_SOURCES += $(FORMS))
502
503# Resource files with some OSE differences (VirtualBoxBrand.qrc is created further down).
504VirtualBox_SOURCES += VirtualBox1.qrc
505VirtualBox1.qrc_RCCFLAGS = -name BASIC1
506VirtualBox_SOURCES += VirtualBox2.qrc
507VirtualBox2.qrc_RCCFLAGS = -name BASIC2
508VirtualBox_SOURCES += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
509$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc_RCCFLAGS = -name BRAND
510if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL)
511VirtualBox_SOURCES += VirtualBoxShaders.qrc
512VirtualBoxShaders.qrc_RCCFLAGS = -name SHADERS
513endif
514
515# Import the translation source from VBoxUI.pro and add the qt_xx_YY counterparts
516VirtualBox_QT_TRANSLATIONS := $(TRANSLATIONS) \
517 $(patsubst nls/VirtualBox_%.ts,nls/qt_%.ts, $(filter nls/VirtualBox_%.ts,$(TRANSLATIONS)))
518# Compress the translation units.
519VirtualBox_LRCFLAGS = -silent
520# Where to install the translations (a separate install target, VirtualBox-nls-inst is created).
521VirtualBox_QT_TRANSLATIONS_INST = $(INST_BIN)nls/
522
523
524## @todo how to detect what tool is used?
525## @todo GCC3 seems to lack -Wno-missing-base-class-initializer, so we use
526# more generic -Wno-extra
527# bird: What about $(if $(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-missing-base-class-initializer),$(VBOX_GCC_Wno-extra))?
528ifdef VBOX_WITH_XPCOM
529 VirtualBox_src/COMDefs.cpp_CXXFLAGS = $(VBOX_GCC_Wno-extra)
530endif
531
532
533#
534# Generate the COM wrappers.
535#
536VirtualBox_BLDDIRS += $(PATH_VirtualBox)/include
537VirtualBox_INTERMEDIATES += $(PATH_VirtualBox)/include/COMWrappers.h
538VirtualBox_CLEAN += $(PATH_VirtualBox)/include/COMWrappers.h
539
540$$(PATH_VirtualBox)/include/COMWrappers.h: \
541 $(VBOX_XIDL_FILE) \
542 $(VBOX_VIRTUALBOX4_SRC)/include/COMWrappers.xsl \
543 | $$(dir $$@)
544 $(call MSG_GENERATE,VirtualBox,$<,$@)
545 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_VIRTUALBOX4_SRC)/include/COMWrappers.xsl $<
546
547# alias for generating the COM Wrappers file.
548testwrappers:: $$(PATH_VirtualBox)/include/COMWrappers.h
549
550
551#
552# Generate qrc file with branded icons.
553#
554VirtualBox_BLDDIRS += $(VBOX_VIRTUALBOX4_OUT_DIR)
555VirtualBox_CLEAN += $(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc
556if "$(KBUILD_HOST)" == "win" ## @todo remove when kBuild ticket #52 has been fixed and deployed.
557 VBOX_DRIVE_HACK := $(firstword $(subst :, ,$(PATH_ROOT))):
558else
559 VBOX_DRIVE_HACK :=
560endif
561$(VBOX_VIRTUALBOX4_OUT_DIR)/VirtualBoxBrand.qrc: \
562 $(VBOX_VIRTUALBOX4_SRC)/VirtualBoxBrand.qrc \
563 | $$(dir $$@)
564 $(call MSG_GENERATE,VirtualBox,$<,$@)
565 $(QUIET)$(SED) \
566 -e 's;@VBOX_ABOUT_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_ABOUT_PNG));g' \
567 -e 's;@VBOX_ABOUT_16PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_ABOUT_16PX_PNG));g' \
568 -e 's;@VBOX_VBOX_16PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_16PX_PNG));g' \
569 -e 's;@VBOX_VBOX_20PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_20PX_PNG));g' \
570 -e 's;@VBOX_VBOX_32PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_32PX_PNG));g' \
571 -e 's;@VBOX_VBOX_40PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_40PX_PNG));g' \
572 -e 's;@VBOX_VBOX_48PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_48PX_PNG));g' \
573 -e 's;@VBOX_VBOX_64PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_VBOX_64PX_PNG));g' \
574 -e 's;@VBOX_CUBE_42PX_PNG@;$(subst $(VBOX_DRIVE_HACK),,$(VBOX_BRAND_GUI_CUBE_42PX_PNG));g' \
575 --output $@ \
576 $<
577
578
579ifeq ($(KBUILD_TARGET),win)
580#
581# On Windows we'll have to generate/edit part of the resource file.
582# The IDI_ICON1 name is Qt specific.
583#
584src/win/VirtualBox.rc_INCS = $(PATH_VirtualBox)
585src/win/VirtualBox.rc_DEPS = $(PATH_VirtualBox)/VirtualBox-icon.rc
586src/win/VirtualBox.rc_CLEAN = $(PATH_VirtualBox)/VirtualBox-icon.rc
587
588$$(PATH_VirtualBox)/VirtualBox-icon.rc: $(MAKEFILE_CURRENT) $(VBOX_WINDOWS_ICON_FILE) | $$(dir $$@)
589 $(APPEND) -t $@ 'IDI_ICON1 ICON "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
590
591endif # win
592
593
594ifeq ($(KBUILD_TARGET),darwin)
595#
596# Create directories for each approved language or the application
597# menu won't be translated.
598#
599INSTALLS += VirtualBox.lproj
600VirtualBox.lproj_INST = $(INST_VIRTUALBOX)Contents/Resources/
601VirtualBox.lproj_MODE = 755
602VirtualBox.lproj_DIRS := $(addsuffix .lproj,$(VBOX_APPROVED_GUI_LANGUAGES_ALL))
603
604#
605# On OS X (darwin) we need to install icon resources and compulsory bundle contents.
606# The VirtualBoxVM.app helper is for launching VMs (fixes some issues with the dock).
607#
608INSTALLS += VirtualBox.app
609VirtualBox.app_INST = $(INST_VIRTUALBOX)Contents/
610VirtualBox.app_MODE = 644
611VirtualBox.app_SOURCES = \
612 src/darwin/PkgInfo \
613 $(PATH_VirtualBox.app)/Info.plist \
614 $(VBOX_MACOSX_ICON_FILE)=>Resources/virtualbox.icns
615
616$$(PATH_VirtualBox.app)/Info.plist: $(PATH_SUB_CURRENT)/src/darwin/Info.plist $(VBOX_VERSION_MK) | $$(@D)/
617 $(call MSG_GENERATE,VirtualBox.app,$<,$@)
618 $(QUIET)$(RM) -f $@
619 $(QUIET)$(SED) \
620 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
621 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
622 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
623 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
624 $< > $@
625
626INSTALLS += VirtualBoxVM.app
627VirtualBoxVM.app_INST = $(VirtualBox.app_INST)Resources/VirtualBoxVM.app/Contents/
628VirtualBoxVM.app_MODE = 644
629VirtualBoxVM.app_SOURCES = \
630 src/darwin/VM-PkgInfo=>PkgInfo \
631 $(PATH_VirtualBoxVM.app)/VM-Info.plist=>Info.plist
632VirtualBoxVM.app_SYMLINKS = \
633 MacOS=>../../../MacOS/ \
634 Resources=>../../../Resources/
635
636$$(PATH_VirtualBoxVM.app)/VM-Info.plist: $(PATH_SUB_CURRENT)/src/darwin/VM-Info.plist $(VBOX_VERSION_MK) | $$(@D)/
637 $(call MSG_GENERATE,VirtualBoxVM.app,$<,$@)
638 $(QUIET)$(RM) -f $@
639 $(QUIET)$(SED) \
640 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
641 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
642 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
643 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
644 --output $@ $<
645endif # darwin
646
647
648#
649# Testcase for the darwin keyboard routines.
650#
651ifdef VBOX_WITH_TESTCASES
652PROGRAMS.darwin += tstDarwinKeyboard
653tstDarwinKeyboard_NAME = tstDarwinKeyboard
654tstDarwinKeyboard_TEMPLATE = VBOXR3TSTEXE
655tstDarwinKeyboard_DEFS.x86 = USE_HID_FOR_MODIFIERS
656tstDarwinKeyboard_INCS = include
657tstDarwinKeyboard_SOURCES = \
658 src/darwin/tstDarwinKeyboard.cpp \
659 src/darwin/DarwinKeyboard.cpp
660tstDarwinKeyboard_SOURCES.amd64 = \
661 src/darwin/VBoxCocoaApplication.m
662tstDarwinKeyboard_LDFLAGS = -framework IOKit -framework Carbon -framework AppKit
663tstDarwinKeyboard_LIBS = \
664 $(LIB_RUNTIME)
665endif
666
667
668# Unset everything that was loaded from VBoxUI.pro.
669TEMPLATE := $(SAVED_TEMPLATE)
670SAVED_TEMPLATE :=
671LANGUAGE :=
672FORMS :=
673TRANSLATIONS :=
674IMAGES :=
675
676
677# Commit the magic.
678# (note: before custom rules that make usage of generated variables!).
679include $(KBUILD_PATH)/subfooter.kmk
680
681#
682# Update all known NLS translation (.ts) files in the nls/ subdirectory.
683#
684# NOTE: This target is intended to be run only by the GUI maintainer shortly
685# before a new product release. VirtualBox_xx_YY.ts is a template for new
686# languages and should never be actually translated or installed.
687#
688updatenls:: \
689 $(filter-out %.qrc,$(VirtualBox_SOURCES) $(VirtualBox_VBOX_EXTRA_NLS_SOURCES)) \
690 $(wildcard include/*.h)
691 $(call MSG_L1,lupdate all languages (nls/*.ts))
692 $(QUIET)$(TOOL_QT4_LUPDATE) \
693 $^ \
694 -ts \
695 $(filter-out nls/qt_%.ts,$(VirtualBox_QT_TRANSLATIONS)) \
696 nls/VirtualBox_xx_YY.ts
697
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