VirtualBox

source: vbox/trunk/src/VBox/Debugger/Makefile.kmk@ 60378

Last change on this file since 60378 was 60072, checked in by vboxsync, 9 years ago

'xcb' for Qt5 on X11 and make it more obvious if VBOX_WITH_QTGUI_V5 is active or not

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1# $Id: Makefile.kmk 60072 2016-03-17 12:18:23Z vboxsync $
2## @file
3# Makefile for the VBox debugger.
4#
5
6#
7# Copyright (C) 2006-2015 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# The targets.
23#
24ifdef VBOX_WITH_DEBUGGER
25 LIBRARIES += Debugger
26 ifdef VBOX_WITH_TESTCASES
27 PROGRAMS += tstDBGCParser
28 endif
29endif # VBOX_WITH_DEBUGGER
30
31
32#
33# Debugger library - linked into VBoxVMM.
34#
35Debugger_TEMPLATE = VBOXR3
36Debugger_DEFS = IN_VMM_R3 IN_DBG_R3 IN_DIS
37ifneq ($(KBUILD_TYPE),release)
38 Debugger_DEFS += VBOX_WITH_DEBUGGER_TCP_BY_DEFAULT
39endif
40Debugger_SOURCES = \
41 DBGConsole.cpp \
42 DBGCEval.cpp \
43 DBGCBuiltInSymbols.cpp \
44 DBGCCmdHlp.cpp \
45 DBGCCmdWorkers.cpp \
46 DBGCCommands.cpp \
47 DBGCFunctions.cpp \
48 DBGCEmulateCodeView.cpp \
49 DBGCOps.cpp \
50 DBGCGdbRemoteStub.cpp \
51 DBGCTcp.cpp
52
53#
54# The diggers plug-in.
55#
56DLLS += DbgPlugInDiggers
57DbgPlugInDiggers_TEMPLATE = VBOXR3
58DbgPlugInDiggers_SOURCES = \
59 DBGPlugInDiggers.cpp \
60 DBGPlugInDarwin.cpp \
61 DBGPlugInLinux.cpp \
62 DBGPlugInSolaris.cpp \
63 DBGPlugInWinNt.cpp \
64 DBGPlugInOS2.cpp \
65 DBGPlugInCommonELF.cpp
66DbgPlugInDiggers_LIBS = \
67 $(if-expr "$(LIB_VMM)" == "$(VBOX_LIB_VMM_LAZY)",$(LIB_REM),) \
68 $(VBOX_LIB_VMM_LAZY) \
69 $(LIB_RUNTIME)
70$(call VBOX_SET_VER_INFO_DLL,DbgPlugInDiggers,VirtualBox Debugger Guest OS Digger Plug-in)
71
72
73#
74# The DBGC parser testcase.
75# This stubs all the VBoxVMM APIs.
76#
77tstDBGCParser_TEMPLATE = VBOXR3TSTEXE
78tstDBGCParser_DEFS = IN_VMM_R3
79tstDBGCParser_CXXFLAGS = $(VBOX_C_CXX_FLAGS_NO_UNUSED_PARAMETERS)
80tstDBGCParser_SOURCES = \
81 testcase/tstDBGCParser.cpp \
82 testcase/tstDBGCStubs.cpp
83tstDBGCParser_LIBS = \
84 $(Debugger_1_TARGET) \
85 $(LIB_RUNTIME)
86
87
88if defined(VBOX_WITH_QTGUI) && defined(VBOX_WITH_DEBUGGER_GUI)
89#
90# Debugger GUI component (Qt4).
91#
92ifndef VBOX_WITH_QTGUI_V5
93 USES += qt4
94else # VBOX_WITH_QTGUI_V5
95 USES += qt5
96endif # VBOX_WITH_QTGUI_V5
97DLLS += VBoxDbg
98VBoxDbg_TEMPLATE = VBOXQTGUI
99VBoxDbg_DEFS = IN_DBG_R3 VBOXDBG_USE_QT4
100VBoxDbg_INCS = .
101VBoxDbg_QT_MODULES = Core Gui
102ifdef VBOX_WITH_QTGUI_V5
103 # Qt5 requires additional modules:
104 VBoxDbg_QT_MODULES += Widgets
105endif # VBOX_WITH_QTGUI_V5
106VBoxDbg_QT_MOCHDRS = \
107 VBoxDbgGui.h \
108 VBoxDbgConsole.h \
109 VBoxDbgStatsQt4.h
110VBoxDbg_SOURCES = \
111 VBoxDbg.cpp \
112 VBoxDbgGui.cpp \
113 VBoxDbgBase.cpp \
114 VBoxDbgConsole.cpp \
115 VBoxDbgStatsQt4.cpp
116VBoxDbg_LIBS = \
117 $(VBOX_LIB_VMM_LAZY)
118VBoxDbg_LDFLAGS.darwin = \
119 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg.dylib
120$(call VBOX_SET_VER_INFO_DLL,VBoxDbg,VirtualBox Debugger GUI)
121
122 ifdef VBOX_WITH_TESTCASES
123#
124# The VBoxDbg testcase (Qt4).
125#
126PROGRAMS += tstVBoxDbg
127tstVBoxDbg_TEMPLATE = VBOXQTGUIEXE
128ifndef VBOX_WITH_QTGUI_V5
129 tstVBoxDbg_USES = qt4
130 tstVBoxDbg_QTTOOL = QT4
131else # VBOX_WITH_QTGUI_V5
132 tstVBoxDbg_USES = qt5
133 tstVBoxDbg_QTTOOL = QT5
134endif # VBOX_WITH_QTGUI_V5
135tstVBoxDbg_QT_MODULES = Core Gui
136ifdef VBOX_WITH_QTGUI_V5
137 # Qt5 requires additional modules:
138 tstVBoxDbg_QT_MODULES += Widgets
139 tstVBoxDbg_LIBS.linux += xcb
140 tstVBoxDbg_LIBS.solaris += xcb
141 tstVBoxDbg_LIBS.freebsd += xcb
142endif # VBOX_WITH_QTGUI_V5
143tstVBoxDbg_SOURCES = testcase/tstVBoxDbg.cpp
144tstVBoxDbg_LIBS = \
145 $(LIB_VMM) \
146 $(LIB_REM) \
147 $(LIB_RUNTIME)
148 ifeq ($(KBUILD_TARGET),win)
149tstVBoxDbg_LIBS += \
150 $(PATH_STAGE_LIB)/VBoxDbg.lib
151 else
152tstVBoxDbg_LIBS += \
153 $(PATH_STAGE_BIN)/VBoxDbg$(VBOX_SUFF_DLL)
154 endif
155 endif # TESTCASES
156endif # Qt4
157
158
159include $(FILE_KBUILD_SUB_FOOTER)
160
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