1 | <?xml version="1.0"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 |
|
---|
5 | Copyright (C) 2006-2020 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 in VBoxMergeApp.wxi) -->
|
---|
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 | <?if $(env.VBOX_WITH_MIDL_PROXY_STUB) != "yes" ?>
|
---|
25 | <File Id="VBoxClient_x86" Name="VBoxClient-x86.dll"
|
---|
26 | Source="$(env.PATH_OUT)\bin\x86\VBoxClient-x86.dll" KeyPath="yes"
|
---|
27 | DiskId="$(var.Property_DiskIdCommon)">
|
---|
28 | </File>
|
---|
29 | <?else?>
|
---|
30 | <File Id="VBoxClient_x86" Name="VBoxClient-x86.dll"
|
---|
31 | Source="$(env.PATH_OUT)\bin\x86\VBoxClient-x86.dll"
|
---|
32 | DiskId="$(var.Property_DiskIdCommon)">
|
---|
33 | </File>
|
---|
34 | <!-- Our key path, see VBoxMergeApp.wxi. -->
|
---|
35 | <File Id="file_VBoxProxyStub_x86" Name="VBoxProxyStub-x86.dll" KeyPath="yes"
|
---|
36 | Source="$(env.PATH_OUT)\bin\x86\VBoxProxyStub-x86.dll"
|
---|
37 | DiskId="$(var.Property_DiskIdCommon)">
|
---|
38 | <Class Id="$(env.VBOX_MIDL_PROXY_CLSID)" Context="InprocServer32"
|
---|
39 | Description="PSFactoryBuffer" ThreadingModel="both" />
|
---|
40 | </File>
|
---|
41 | <?endif?>
|
---|
42 | <File Id="file_VBoxRT_x86" Name="VBoxRT-x86.dll"
|
---|
43 | Source="$(env.PATH_OUT)\bin\x86\VBoxRT-x86.dll"
|
---|
44 | DiskId="$(var.Property_DiskIdCommon)">
|
---|
45 | </File>
|
---|
46 | <?include $(env.PATH_TARGET)\VirtualBox_TypeLib_x86.wxi ?>
|
---|
47 |
|
---|
48 | <!-- Include CRT Dlls (specific to the compiler). -->
|
---|
49 | <?include $(env.PATH_TARGET)\VBoxCrtDlls32.wxi ?>
|
---|
50 | </Component>
|
---|
51 | </Directory>
|
---|
52 | <?endif?>
|
---|
53 |
|
---|
54 | </Include>
|
---|