Changeset 12182
- Timestamp:
- 09/06/08 20:50:12 (3 months ago)
- Files:
-
- trunk/src/VBox/Debugger/Makefile.kmk (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/Debugger/Makefile.kmk
r12181 r12182 35 35 ifdef VBOX_WITH_TESTCASES 36 36 PROGRAMS += tstDBGCParser 37 endif38 ifdef VBOX_WITH_DEBUGGER_GUI39 DLLS += VBoxDbg340 ifdef VBOX_WITH_TESTCASES41 PROGRAMS += tstVBoxDbg342 endif43 37 endif 44 38 endif # VBOX_WITH_DEBUGGER … … 80 74 81 75 76 if defined(VBOX_WITH_QTGUI) && defined(VBOX_WITH_DEBUGGER_GUI) 82 77 # 83 78 # Debugger GUI component (Qt3). 84 79 # 80 DLLS += VBoxDbg3 85 81 VBoxDbg3_TEMPLATE = VBOXQTGUI 86 82 USES += qt3 … … 105 101 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg3.dylib 106 102 103 ifdef VBOX_WITH_TESTCASES 104 # 105 # The VBoxDbg testcase (Qt3). 106 # 107 PROGRAMS += tstVBoxDbg3 108 tstVBoxDbg3_TEMPLATE = VBOXQTGUIEXE 109 tstVBoxDbg3_USES = qt3 110 tstVBoxDbg3_QTTOOL = QT3 111 tstVBoxDbg3_SOURCES = testcase/tstVBoxDbg.cpp 112 tstVBoxDbg3_LIBS = \ 113 $(LIB_VMM) \ 114 $(LIB_RUNTIME) 115 ifeq ($(KBUILD_TARGET),win) 116 tstVBoxDbg3_LIBS += \ 117 $(PATH_LIB)/VBoxDbg.lib 118 else 119 tstVBoxDbg3_LIBS += \ 120 $(PATH_BIN)/VBoxDbg$(VBOX_SUFF_DLL) 121 endif 122 endif 123 endif # QTGUI 107 124 125 126 if defined(VBOX_WITH_QT4GUI) && defined(VBOX_WITH_DEBUGGER_GUI) && $(USER) == bird 108 127 # 109 128 # Debugger GUI component (Qt4). 110 129 # 111 #DLLS += VBoxDbg130 DLLS += VBoxDbg 112 131 VBoxDbg_TEMPLATE = VBOXQT4GUI 113 132 VBoxDbg_DEFS = IN_DBG_R3 VBOXDBG_USE_QT4 … … 129 148 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg.dylib 130 149 131 132 # 133 # The VBoxDbg testcase (Qt3). 134 # 135 tstVBoxDbg3_TEMPLATE = VBOXQTGUIEXE 136 tstVBoxDbg3_USES = qt3 137 tstVBoxDbg3_QTTOOL = QT3 138 tstVBoxDbg3_SOURCES = testcase/tstVBoxDbg.cpp 139 tstVBoxDbg3_LIBS = \ 140 $(LIB_VMM) \ 141 $(LIB_RUNTIME) 142 ifeq ($(KBUILD_TARGET),win) 143 tstVBoxDbg3_LIBS += \ 144 $(PATH_LIB)/VBoxDbg.lib 145 else 146 tstVBoxDbg3_LIBS += \ 147 $(PATH_BIN)/VBoxDbg$(VBOX_SUFF_DLL) 148 endif 149 150 ifdef VBOX_WITH_TESTCASES 150 151 # 151 152 # The VBoxDbg testcase (Qt4). 152 153 # 153 #PROGRAMS += tstVBoxDbg154 tstVBoxDbg_TEMPLATE = VBOXQT GUI4EXE154 PROGRAMS += tstVBoxDbg 155 tstVBoxDbg_TEMPLATE = VBOXQT4GUIEXE 155 156 tstVBoxDbg_USES = qt4 156 157 tstVBoxDbg_QTTOOL = QT4 … … 160 161 $(LIB_VMM) \ 161 162 $(LIB_RUNTIME) 162 ifeq ($(KBUILD_TARGET),win)163 ifeq ($(KBUILD_TARGET),win) 163 164 tstVBoxDbg_LIBS += \ 164 165 $(PATH_LIB)/VBoxDbg.lib 165 else166 else 166 167 tstVBoxDbg_LIBS += \ 167 168 $(PATH_BIN)/VBoxDbg$(VBOX_SUFF_DLL) 168 endif 169 endif 170 endif # TESTCASES 171 endif # Qt4 169 172 170 173

