Changeset 98945 in vbox for trunk/src/VBox/Additions/WINNT/Installer
- Timestamp:
- Mar 13, 2023 9:20:06 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156294
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/InstallHelper/Makefile.kmk
r98416 r98945 37 37 # Note! Installation is required for repacking Guest Additions 38 38 # 39 ## @todo kBuild: This needs the WINPSDK fix to work for cross building. 40 DLLS.x86 += VBoxGuestInstallHelper 39 DLLS += VBoxGuestInstallHelper 41 40 VBoxGuestInstallHelper_TEMPLATE := VBoxGuestR3Dll 42 VBoxGuestInstallHelper_INST := repackadd/resources/VBoxGuestInstallHelper/ 41 VBoxGuestInstallHelper_BLD_TRG_ARCH := x86 42 VBoxGuestInstallHelper_INST := repackadd/resources/VBoxGuestInstallHelper/ 43 43 ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.) 44 44 VBoxGuestInstallHelper_INSTTYPE := stage 45 45 VBoxGuestInstallHelper_DEBUG_INSTTYPE := both 46 46 endif 47 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0400 WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE 48 VBoxGuestInstallHelper_BLD_TRG_ARCH := x86 47 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0400 WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE 49 48 VBoxGuestInstallHelper_SOURCES := \ 50 49 VBoxGuestInstallHelper.cpp \ -
trunk/src/VBox/Additions/WINNT/Installer/Makefile.kmk
r98935 r98945 40 40 # 41 41 VBOX_PATH_WIN_ADD_INS_SRC := $(PATH_SUB_CURRENT) 42 VBOX_PATH_ADDITIONS.win.x86 := $(PATH_OUT_BASE)/win.x86/$(KBUILD_TYPE)/bin/additions43 42 VBOX_WITH_GUEST_INSTALL_HELPER := 1 # Use our guest install helper DLL. 44 43 ## @todo VBOX_WIN_ADD_INS_OUT_DIR := $(PATH_TARGET)/Additions/Installer/win … … 264 263 -E 'PATH_OUT=$(subst /,\,$(PATH_OUT))' \ 265 264 -E 'PATH_TARGET=$(subst /,\,$(PATH_TARGET))' \ 266 -E 'PATH_TARGET_X86=$(subst /,\,$(PATH_OUT_BASE)/win.x86/$(KBUILD_TYPE)/obj)' \267 -E 'VBOX_PATH_ADDITIONS_WIN_X86=$(subst /,\,$(VBOX_PATH_ADDITIONS.win.x86))' \268 265 -E 'VBOX_PATH_DIFX=$(subst /,\,$(VBOX_PATH_DIFX))' \ 269 266 -E 'VBOX_VENDOR=$(VBOX_VENDOR)' \ -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r98626 r98945 76 76 !define ORG_MOUSE_PATH "MousePath" 77 77 78 ; If we have our guest install helper DLL, add the 79 ; plugin path so that NSIS can find it when compiling the installer 80 ; Note: NSIS plugins *always* have to be compiled in 32-bit! 78 ; If we have our guest install helper DLL, add the plugin path so that NSIS can 79 ; find it when compiling the installer 81 80 !if $%VBOX_WITH_GUEST_INSTALL_HELPER% == "1" 82 !addplugindir "$%PATH_TARGET _X86%\VBoxGuestInstallHelper"81 !addplugindir "$%PATH_TARGET%\VBoxGuestInstallHelper" 83 82 !endif 84 83
Note:
See TracChangeset
for help on using the changeset viewer.