VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergePython.wxs

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1<?xml version="1.0"?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4-->
5<!--
6 Copyright (C) 2006-2023 Oracle and/or its affiliates.
7
8 This file is part of VirtualBox base platform packages, as
9 available from https://www.virtualbox.org.
10
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License
13 as published by the Free Software Foundation, in version 3 of the
14 License.
15
16 This program is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, see <https://www.gnu.org/licenses>.
23
24 SPDX-License-Identifier: GPL-3.0-only
25-->
26
27<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
28 xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
29
30 <?include Defines.wxi ?>
31
32 <Module Id="msm_VBoxPython"
33 Language="!(loc.LANG)"
34 Version="$(var.Property_Version)">
35
36 <Package Id="0f4de366-a8f3-4842-a165-fb19251cde88"
37 Keywords="Installer"
38 Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) Python bindings installation package"
39 Comments="$(env.VBOX_PRODUCT) Python bindings installation package"
40 Manufacturer="$(env.VBOX_VENDOR)"
41 InstallerVersion="200"
42 AdminImage="yes"
43 InstallPrivileges="elevated"
44 Platform="$(var.Property_Platform)"
45 SummaryCodepage="1252"/>
46
47 <?include CommonProperties.wxi ?>
48 <?include PublicProperties.wxi ?>
49
50 <!-- Here comes the file/directory list -->
51 <Directory Id="TARGETDIR" Name="SourceDir">
52 <Directory Id="msm_VBoxPythonFolder" FileSource=".">
53
54 <?include VBoxMergePython.wxi ?>
55
56 </Directory> <!-- msm_VBoxPythonFolder -->
57 </Directory> <!-- TARGETDIR -->
58
59 <!-- Custom actions -->
60 <Binary Id="VBoxInstallHelper" SourceFile="$(env.PATH_OUT)\bin\VBoxInstallHelper.dll" />
61 <?include VBoxMergePythonCA.wxi ?>
62
63 <InstallExecuteSequence>
64 <?include VBoxMergePythonSeq.wxi ?>
65 </InstallExecuteSequence>
66
67 </Module>
68</Wix>
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use