Changeset 84449 in vbox for trunk/src/VBox/Installer/win/Makefile.kmk
- Timestamp:
- May 22, 2020 11:17:09 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Makefile.kmk
r84448 r84449 609 609 $(if $(VBOX_WITH_32_ON_64_MAIN_API),$(VBOX_WIN_INST_OUT_DIR)/VirtualBox_TypeLib_x86.wxi,) \ 610 610 $(VBOX_WIN_INST_OUT_DIR)/VBoxKey.wxi \ 611 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls.wxi \612 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls32.wxi \613 611 $(VBOX_WIN_INST_OUT_DIR)/VBoxUnattendedTemplateComponent.wxi \ 614 612 $(if $(VBOX_WITH_QTGUI),$(VBOX_WIN_INST_OUT_DIR)/VBoxGuiNLS.wxi) \ … … 767 765 $(if $(VBOX_WITH_32_ON_64_MAIN_API),$(VBOX_WIN_INST_OUT_DIR)/VirtualBox_TypeLib_x86.wxi,) \ 768 766 $(VBOX_WIN_INST_OUT_DIR)/VBoxKey.wxi \ 769 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls.wxi \770 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls32.wxi \771 767 $(VBOX_WIN_INST_OUT_DIR)/VBoxUnattendedTemplateComponent.wxi \ 772 768 $(if $(VBOX_WITH_QTGUI),$(VBOX_WIN_INST_OUT_DIR)/VBoxGuiNLS.wxi) \ … … 949 945 950 946 # 951 # Generate the list of CRT DLLs.952 #953 ifndef TOOL_$(VBOX_VCC_TOOL)954 include $(KBUILD_PATH)/tools/$(VBOX_VCC_TOOL).kmk955 endif956 $(call KB_FN_AUTO_CMD_DEPS,$(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls.wxi)957 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls.wxi: | $$(dir $$@)958 $(APPEND) -t -n $@ \959 '<?xml version="1.0" ?>' \960 '<Include>' \961 $(foreach dll \962 ,$(if-expr "$(VBOX_VCC_TOOL_STEM)"=="VCC110",msvcr100.dll msvcp100.dll \963 ,$(if-expr "$(VBOX_VCC_TOOL_STEM)"=="VCC111",msvcr110.dll msvcp110.dll \964 ,$(TOOL_$(VBOX_VCC_TOOL)_REDIST_CRT_DLLS) $(TOOL_$(VBOX_VCC_TOOL)_REDIST_CPP_DLLS))) \965 ,'<File Id="file_$(dll)" Name="$(dll)" Source="$$(env.PATH_OUT)\bin\$(dll)" />') \966 '</Include>'967 968 #969 # Generate the list of 32-bit CRT DLLs.970 #971 ifndef TOOL_$(VBOX_VCC_TOOL_STEM)X86972 include $(KBUILD_PATH)/tools/$(VBOX_VCC_TOOL_STEM)X86.kmk973 endif974 $(call KB_FN_AUTO_CMD_DEPS,$(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls32.wxi)975 $(VBOX_WIN_INST_OUT_DIR)/VBoxCrtDlls32.wxi: | $$(dir $$@)976 $(APPEND) -t -n $@ \977 '<?xml version="1.0" ?>' \978 '<Include>' \979 $(foreach dll \980 ,$(if-expr "$(VBOX_VCC_TOOL_STEM)"=="VCC110",msvcr100.dll msvcp100.dll \981 ,$(if-expr "$(VBOX_VCC_TOOL_STEM)"=="VCC111",msvcr110.dll msvcp110.dll \982 ,$(TOOL_$(VBOX_VCC_TOOL_STEM)X86_REDIST_CRT_DLLS) $(TOOL_$(VBOX_VCC_TOOL_STEM)X86_REDIST_CPP_DLLS))) \983 ,'<File Id="file_$(dll)_x86" Name="$(dll)" Source="$$(env.PATH_OUT)\bin\x86\$(dll)" disk="$$(var.Property_DiskIdCommon)" />') \984 '</Include>'985 #986 947 # Generate the list of unattended template script files. 987 948 #
Note:
See TracChangeset
for help on using the changeset viewer.