blob: 6b87ecc6bd1467fd3c558eaec549a487521d9b33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?xml version="1.0"?>
<!--
VirtualBox Windows Installation Script (WiX)
-->
<!--
Copyright (C) 2006-2023 Oracle and/or its affiliates.
This file is part of VirtualBox base platform packages, as
available from https://www.virtualbox.org.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, in version 3 of the
License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <https://www.gnu.org/licenses>.
SPDX-License-Identifier: GPL-3.0-only
-->
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension"
xmlns:util="http://schemas.microsoft.com/wix/Util">
<?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
<!-- Python bindings -->
<Component Id="cp_VBoxPyInst" Guid="C9A40306-5102-11DE-A7BA-C3C555D89593" Win64="$(var.Property_Win64)">
<File Id="file_vboxapisetup.py" Name="vboxapisetup.py"
Source="$(env.PATH_OUT)\bin\sdk\installer\vboxapisetup.py"
DiskId="$(var.Property_DiskIdCommon)" />
</Component>
<Directory Id="dir_VBoxPythonSDKVBoxAPI" Name="vboxapi">
<Component Id="cp_VBoxPyMod" Guid="DF19CB76-5102-11DE-943B-13C755D89593" Win64="$(var.Property_Win64)">
<File Id="file___init__.py" Name="__init__.py"
Source="$(env.PATH_OUT)\bin\sdk\installer\vboxapi\__init__.py"
DiskId="$(var.Property_DiskIdCommon)" />
<File Id="file_VirtualBox_constants.py" Name="VirtualBox_constants.py"
Source="$(env.PATH_OUT)\bin\sdk\installer\vboxapi\VirtualBox_constants.py"
DiskId="$(var.Property_DiskIdCommon)" />
</Component>
</Directory>
<Component Id="cp_VBoxPyDel" Guid="D3C59511-E148-49FA-ADFF-718F2FF1B07A" Win64="$(var.Property_Win64)">
<RegistryValue Root="HKLM" Key="$(var.Property_RegKey)" Name="PythonApiInstallDir" Type="string"
Value="[msm_VBoxPythonFolder]" KeyPath="yes" />
<util:RemoveFolderEx On="uninstall" Property="EXISTING_PYTHON_API_FOLDER" />
</Component>
<?endif?>
<Component Id="cp_VBoxPythonBinding" KeyPath="yes"
Guid="293D7E11-78DA-4C31-AEED-AE2FE42F6881" Win64="$(var.Property_Win64)">
<Condition>VBOX_PYTHON_IS_INSTALLED</Condition>
</Component>
</Include>
|