Changeset 99845 in vbox
- Timestamp:
- May 18, 2023 11:13:00 AM (21 months ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r99040 r99845 131 131 # $(addsuffix /VBoxManageBuiltInHelp.h,$(addprefix $(VBoxManage_0_OUTDIR)/,$(VBOX_APPROVED_VBOXMANAGE_DOCBOOK_LANGUAGES))) 132 132 133 # define qt5 tools for translation 134 USES += qt5 133 # define qt tools for translation 134 ifndef VBOX_WITH_QT6 135 USES += qt5 136 else 137 USES += qt6 138 endif 135 139 136 140 PROGRAMS += VBoxManageNls -
trunk/src/VBox/GuestHost/DragAndDrop/testcase/tstDragAndDropQt/Makefile.kmk
r98127 r99845 32 32 # Targets and units. 33 33 # 34 USES += qt5 34 ifndef VBOX_WITH_QT6 35 USES += qt5 36 else 37 USES += qt6 38 endif 35 39 PROGRAMS.linux += tstDragAndDropQt # Just needed for Linux right now. 36 40 -
trunk/src/VBox/GuestHost/SharedClipboard/testcase/tstClipboardQt/Makefile.kmk
r98127 r99845 32 32 # Targets and units. 33 33 # 34 USES += qt5 34 ifndef VBOX_WITH_QT6 35 USES += qt5 36 else 37 USES += qt6 38 endif 35 39 PROGRAMS += tstClipboardQt 36 40 -
trunk/src/VBox/Main/Makefile.kmk
r99798 r99845 1463 1463 ifndef VBOX_ONLY_EXTPACKS 1464 1464 LIBRARIES += VBoxCOM-GUI 1465 USES += qt5 1465 ifndef VBOX_WITH_QT6 1466 USES += qt5 1467 else 1468 USES += qt6 1469 endif 1466 1470 VBoxCOM-GUI_TEMPLATE = $(if-expr defined(VBOX_WITH_HARDENING),VBoxQtGuiDll,VBoxQtGuiExe) 1467 1471 VBoxCOM-GUI_EXTENDS = VBoxCOM … … 1471 1475 # define qt5 tools for translation even if VBOX_ONLY_EXTPACKS is enabled 1472 1476 ifdef VBOX_WITH_NLS 1473 USES += qt5 1477 ifndef VBOX_WITH_QT6 1478 USES += qt5 1479 else 1480 USES += qt6 1481 endif 1474 1482 endif 1475 1483
Note:
See TracChangeset
for help on using the changeset viewer.