1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX), preprocessor defines.
|
---|
4 | -->
|
---|
5 | <!--
|
---|
6 | Copyright (C) 2014-2022 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 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
28 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
29 |
|
---|
30 | <!-- TODO: Add "VBox" prefix! -->
|
---|
31 | <?define Property_RegKey = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox" ?>
|
---|
32 | <?define Property_RegKeyInstall = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox\Install" ?>
|
---|
33 | <?define Property_Upgrade = "yes" ?>
|
---|
34 | <?define Property_Version = "$(env.VBOX_VERSION_STRING_RAW)" ?>
|
---|
35 | <?define Property_VersionExt = "$(env.VBOX_VERSION_STRING)" ?>
|
---|
36 |
|
---|
37 | <?if $(env.KBUILD_TARGET_ARCH) = "amd64" ?>
|
---|
38 | <?define Property_ProgramFiles = "ProgramFiles64Folder" ?>
|
---|
39 | <?define Property_Platform = "x64" ?>
|
---|
40 | <?define Property_Win64 = "yes" ?>
|
---|
41 |
|
---|
42 | <?if $(env.VBOX_SIGNING_MODE)!= none ?>
|
---|
43 | <?define Property_DriverLegacy = "no" ?>
|
---|
44 | <?else ?>
|
---|
45 | <?define Property_DriverLegacy = "yes" ?>
|
---|
46 | <?endif ?>
|
---|
47 |
|
---|
48 | <?else ?>
|
---|
49 | <?define Property_ProgramFiles = "ProgramFilesFolder" ?>
|
---|
50 | <?define Property_Platform = "x86" ?>
|
---|
51 | <?define Property_Win64 = "no" ?>
|
---|
52 |
|
---|
53 | <?if $(env.VBOX_SIGNING_MODE)!= none ?>
|
---|
54 | <!-- Note: Settings this to 'no' breaks Windows 2000 installs (!) -->
|
---|
55 | <?define Property_DriverLegacy = "yes" ?>
|
---|
56 | <?else ?>
|
---|
57 | <?define Property_DriverLegacy = "yes" ?>
|
---|
58 | <?endif ?>
|
---|
59 |
|
---|
60 | <?endif ?>
|
---|
61 |
|
---|
62 | <!-- If we build a combined installer (32- and 64-bit in one installer), we
|
---|
63 | use two installer "disks": One for all platform-specific stuff and one which
|
---|
64 | contains all common (platform independent) stuff (like manuals, bitmaps etc) -->
|
---|
65 | <?if $(env.VBOX_WITH_COMBINED_PACKAGE) = "yes" ?>
|
---|
66 | <?define Property_DiskIdCommon = "2" ?>
|
---|
67 | <?else ?>
|
---|
68 | <?define Property_DiskIdCommon = "1" ?>
|
---|
69 | <?endif ?>
|
---|
70 |
|
---|
71 | </Include>
|
---|