Changeset 89656 in vbox
- Timestamp:
- Jun 13, 2021 10:57:27 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r89648 r89656 737 737 # Build the Validation Kit. 738 738 VBOX_WITH_VALIDATIONKIT = 1 739 # Set if we should ship the audio test from the Validation Kit with the host installer. 740 VBOX_WITH_HOST_SHIPPING_AUDIO_TEST = 1 741 # Set if we should ship the audio test from the Validation Kit with the guest additions. 742 VBOX_WITH_ADDITIONS_SHIPPING_AUDIO_TEST = 1 739 743 # Build the testcases. 740 744 VBOX_WITH_TESTCASES = 1 -
trunk/src/VBox/Makefile.kmk
r89634 r89656 29 29 include $(PATH_SUB_CURRENT)/Additions/Makefile.kmk 30 30 31 ifdef VBOX_WITH_ VALIDATIONKIT # For including VKAT with the Guest Additions.31 ifdef VBOX_WITH_ADDITIONS_SHIPPING_AUDIO_TEST 32 32 include $(PATH_SUB_CURRENT)/ValidationKit/utils/audio/Makefile.kmk 33 33 endif … … 102 102 ifdef VBOX_WITH_VALIDATIONKIT 103 103 include $(PATH_SUB_CURRENT)/ValidationKit/Makefile.kmk 104 else ifdef VBOX_WITH_HOST_SHIPPING_AUDIO_TEST 105 include $(PATH_SUB_CURRENT)/ValidationKit/utils/audio/Makefile.kmk 104 106 endif 105 107 include $(PATH_SUB_CURRENT)/NetworkServices/Makefile.kmk -
trunk/src/VBox/ValidationKit/utils/audio/Makefile.kmk
r89655 r89656 36 36 endif 37 37 38 38 39 # 39 40 # Append what we build here to PROGRAMS (at the top because it's a bit messy). … … 43 44 PROGRAMS += vkat 44 45 endif 45 if defined(VBOX_ONLY_ADDITIONS) || !defined(VBOX_ONLY_BUILD) 46 ifndef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER 47 ifdef VBOX_WITH_ADDITIONS 48 PROGRAMS += vkatadd 46 ifdef VBOX_WITH_ADDITIONS_SHIPPING_AUDIO_TEST 47 if defined(VBOX_ONLY_ADDITIONS) || !defined(VBOX_ONLY_BUILD) 48 ifndef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER 49 ifdef VBOX_WITH_ADDITIONS 50 PROGRAMS += vkatadd 51 endif 49 52 endif 50 53 endif 51 54 endif 52 55 endif 56 53 57 54 58 # … … 62 66 WinMM.Lib 63 67 endif 68 64 69 65 70 # … … 149 154 150 155 156 # 157 # Copy the valkit vkat to bin so it can be shipped with the host installer too. 158 # 159 ifdef VBOX_WITH_HOST_SHIPPING_AUDIO_TEST 160 INSTALLS += vkathost 161 vkathost_TEMPLATE = VBOXR3EXE 162 vkathost_SOURCES = $(vkat_1_TARGET) 163 endif 164 151 165 include $(FILE_KBUILD_SUB_FOOTER) 152 166
Note:
See TracChangeset
for help on using the changeset viewer.