VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergeCOM32On64.wxi@ 54755

Last change on this file since 54755 was 51127, checked in by vboxsync, 11 years ago

Windows host installer: Split off 32-bit on 64-bit COM support into own module, bugfixes, added some more build dependencies.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1<?xml version="1.0"?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4
5 Copyright (C) 2006-2014 Oracle Corporation
6
7 This file is part of VirtualBox Open Source Edition (OSE), as
8 available from http://www.virtualbox.org. This file is free software;
9 you can redistribute it and/or modify it under the terms of the GNU
10 General Public License (GPL) as published by the Free Software
11 Foundation, in version 2 as it comes in the "COPYING" file of the
12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14-->
15
16<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
17 xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
18
19<?if $(env.VBOX_WITH_32_ON_64_MAIN_API) = "yes" ?>
20 <Directory Id="dir_VBoxCOM32On64X86" Name="x86">
21 <!-- The 32-bit client COM component (see also cp_MainCom below) -->
22 <Component Id="cp_MainCOM_x86" Guid="B600824E-4A25-2EB3-4B44-3D8CB7F9B92D" Win64="no">
23 <!-- Note: This file ID *must not* be changed because of our typelib template generation file! -->
24 <File Id="VBoxClient_x86" Name="VBoxClient-x86.dll"
25 Source="$(env.PATH_OUT)\bin\x86\VBoxClient-x86.dll" KeyPath="yes"
26 DiskId="$(var.Property_DiskIdCommon)">
27 </File>
28 <File Id="file_VBoxRT_x86" Name="VBoxRT-x86.dll"
29 Source="$(env.PATH_OUT)\bin\x86\VBoxRT-x86.dll"
30 DiskId="$(var.Property_DiskIdCommon)">
31 </File>
32 <?include $(env.PATH_TARGET)\VirtualBox_TypeLib_x86.wxi ?>
33 <?if $(env.VBOX_VCC_TOOL_STEM) = "VCC100" ?>
34 <!-- MS C/C++ v10.0 32 bit Runtime DLL files -->
35 <File Id="file_msvcr100_x86" Name="msvcr100.dll"
36 Source="$(env.PATH_OUT)\bin\x86\msvcr100.dll"
37 DiskId="$(var.Property_DiskIdCommon)" />
38 <File Id="file_msvcp100_x86" Name="msvcp100.dll"
39 Source="$(env.PATH_OUT)\bin\x86\msvcp100.dll"
40 DiskId="$(var.Property_DiskIdCommon)" />
41 <?endif?>
42 <?if $(env.VBOX_VCC_TOOL_STEM) = "VCC110" ?>
43 <!-- MS C/C++ v11.0 Runtime DLL files -->
44 <File Id="file_msvcr110_x86" Name="msvcr110.dll"
45 Source="$(env.PATH_OUT)\bin\x86\msvcr110.dll"
46 DiskId="$(var.Property_DiskIdCommon)" />
47 <File Id="file_msvcp110_x86" Name="msvcp110.dll"
48 Source="$(env.PATH_OUT)\bin\x86\msvcp110.dll"
49 DiskId="$(var.Property_DiskIdCommon)" />
50 <?endif?>
51 </Component>
52 </Directory>
53<?endif?>
54
55</Include>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette