Changeset 21250 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Jul 6, 2009 1:19:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r21246 r21250 22 22 SUB_DEPTH = ../../../../.. 23 23 include $(KBUILD_PATH)/subheader.kmk 24 if "$(KBUILD_HOST)" != "os2" || defined(VBOX_WITH_OS2_ADDITIONS) 24 25 25 if "$(KBUILD_HOST)" != "os2" || defined(VBOX_WITH_OS2_ADDITIONS) 26 PROGRAMS += VBoxService 27 endif 28 29 # Build special VBoxService version for NT4. 30 ifeq ($(KBUILD_TARGET), win) 31 PROGRAMS.x86 += VBoxServiceNT 32 endif 26 # 27 # Target lists. 28 # 29 PROGRAMS += VBoxService 30 PROGRAMS.win.x86 += VBoxServiceNT 33 31 34 32 # … … 72 70 73 71 # 74 # VBoxServiceNT - NT version of VBoxService (x86 only).72 # VBoxServiceNT - NT4 version of VBoxService. 75 73 # 76 74 VBoxServiceNT_TEMPLATE = VBOXGUESTR3EXE 77 VBoxServiceNT_DEFS = VBOXSERVICE_TIMESYNC 78 VBoxServiceNT_DEFS += _WIN32_WINNT=0x0400 _UNICODE UNICODE TARGET_NT4 79 ifdef VBOX_WITH_GUEST_PROPS 80 VBoxServiceNT_DEFS += VBOX_WITH_GUEST_PROPS VBOXSERVICE_VMINFO 81 endif 82 VBoxServiceNT_SOURCES = \ 83 VBoxService.cpp \ 84 VBoxServiceTimeSync.cpp \ 85 VBoxServiceUtils.cpp \ 86 VBoxService-win.rc \ 87 VBoxService-win.cpp 88 ifdef VBOX_WITH_GUEST_PROPS 89 VBoxServiceNT_SOURCES += \ 90 VBoxServiceVMInfo.cpp \ 91 VBoxServiceVMInfo-win.cpp 92 endif 93 VBoxServiceNT_LIBS = \ 94 $(VBOX_LIB_IPRT_GUEST_R3) \ 95 $(VBOX_LIB_VBGL_R3) \ 96 $(VBOX_LIB_IPRT_GUEST_R3) 75 VBoxServiceNT_EXTENDS = VBoxService 76 VBoxServiceNT_DEFS.win = _WIN32_WINNT=0x0400 _UNICODE UNICODE TARGET_NT4 97 77 78 # 98 79 # The icon is configurable. 80 # 99 81 VBoxService-win.rc_INCS = $(PATH_VBoxService) 100 82 VBoxService-win.rc_DEPS = $(PATH_VBoxService)/VBoxService-win-icon.rc … … 106 88 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"' 107 89 90 endif # os2 || with os2 additions 108 91 include $(KBUILD_PATH)/subfooter.kmk 109 92
Note:
See TracChangeset
for help on using the changeset viewer.