Changeset 93341 in vbox for trunk/src/VBox
- Timestamp:
- Jan 19, 2022 10:53:38 AM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/Makefile.kmk
r93322 r93341 229 229 230 230 # 231 # WinNetConfig - static library with host network interface config API 231 # WinNetConfig - static library with host network interface config API (for the installer) 232 232 # 233 233 LIBRARIES.win += WinNetConfig 234 WinNetConfig_TEMPLATE = VB OXR3STATIC234 WinNetConfig_TEMPLATE = VBoxR3StaticDllNoAsan 235 235 WinNetConfig_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) 236 236 WinNetConfig_DEFS = _WIN32_WINNT=0x0501 _UNICODE UNICODE -
trunk/src/VBox/HostDrivers/win/Makefile.kmk
r93115 r93341 28 28 include $(KBUILD_PATH)/subheader.kmk 29 29 30 # For the installer helpers 30 31 LIBRARIES += VBoxDrvCfg 31 VBoxDrvCfg_TEMPLATE = VB OXR3STATIC32 VBoxDrvCfg_TEMPLATE = VBoxR3StaticDllNoAsan 32 33 VBoxDrvCfg_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) 33 34 VBoxDrvCfg_DEFS = _WIN32_WINNT=0x0501 _UNICODE UNICODE -
trunk/src/VBox/Installer/win/InstallHelper/Makefile.kmk
r93322 r93341 19 19 include $(KBUILD_PATH)/subheader.kmk 20 20 21 21 22 DLLS += VBoxInstallHelper 22 VBoxInstallHelper_TEMPLATE = VBoxR3StaticDll 23 VBoxInstallHelper_DEFS = _WIN32_WINNT=0x0501 _UNICODE UNICODE 24 VBoxInstallHelper_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV) 25 VBoxInstallHelper_DEPS = $(VBOX_SVN_REV_KMK) 23 VBoxInstallHelper_TEMPLATE = VBoxR3StaticDllNoAsan 24 VBoxInstallHelper_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) 25 VBoxInstallHelper_DEFS = _WIN32_WINNT=0x0501 _UNICODE UNICODE VBOX_SVN_REV=$(VBOX_SVN_REV) 26 26 ifdef VBOX_WITH_NETFLT 27 VBoxInstallHelper_SDKS += VBOX_WIN_NEWDEV 27 28 VBoxInstallHelper_DEFS += VBOX_WITH_NETFLT=1 28 29 endif 30 VBoxInstallHelper_DEPS = $(VBOX_SVN_REV_KMK) 29 31 VBoxInstallHelper_SOURCES = \ 30 32 VBoxInstallHelper.cpp \ … … 33 35 VBoxCommon.cpp 34 36 ifndef VBOX_OSE 35 VBoxInstallHelper_SOURCES += internal/VBoxSerial.cpp 37 VBoxInstallHelper_SOURCES += \ 38 internal/VBoxSerial.cpp 36 39 endif 37 VBoxInstallHelper_ SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK)38 VBoxInstallHelper_LIBS +=$(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Msi.lib40 VBoxInstallHelper_LIBS = \ 41 $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Msi.lib 39 42 ifdef VBOX_WITH_NETFLT 40 VBoxInstallHelper_SDKS += VBOX_WIN_NEWDEV41 43 VBoxInstallHelper_LIBS += \ 42 44 $(PATH_STAGE_LIB)/WinNetConfig.lib \
Note:
See TracChangeset
for help on using the changeset viewer.