summaryrefslogtreecommitdiff
path: root/src/VBox/Installer/win/Defines.wxi
blob: 3a8454f0e04d76d2ec263ea95f31b62640cec79b (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
61
<?xml version="1.0" encoding="utf-8"?>
<!--
    VirtualBox Windows Installation Script (WiX), preprocessor defines.
-->
<!--
    Copyright (C) 2014-2020 Oracle Corporation

    This file is part of VirtualBox Open Source Edition (OSE), as
    available from http://www.virtualbox.org. This file is free software;
    you can redistribute it and/or modify it under the terms of the GNU
    General Public License (GPL) as published by the Free Software
    Foundation, in version 2 as it comes in the "COPYING" file of the
    VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
-->

<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
         xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">

  <!-- TODO: Add "VBox" prefix! -->
  <?define Property_RegKey = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox" ?>
  <?define Property_RegKeyInstall = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox\Install" ?>
  <?define Property_Upgrade = "yes" ?>
  <?define Property_Version = "$(env.VBOX_VERSION_STRING_RAW)" ?>
  <?define Property_VersionExt = "$(env.VBOX_VERSION_STRING)" ?>

  <?if $(env.KBUILD_TARGET_ARCH) = "amd64" ?>
      <?define Property_ProgramFiles = "ProgramFiles64Folder" ?>
      <?define Property_Platform     = "x64" ?>
      <?define Property_Win64        = "yes" ?>

      <?if $(env.VBOX_SIGNING_MODE)!= none ?>
          <?define Property_DriverLegacy = "no" ?>
      <?else ?>
          <?define Property_DriverLegacy = "yes" ?>
      <?endif ?>

  <?else ?>
      <?define Property_ProgramFiles = "ProgramFilesFolder" ?>
      <?define Property_Platform     = "x86" ?>
      <?define Property_Win64        = "no" ?>

      <?if $(env.VBOX_SIGNING_MODE)!= none ?>
          <!-- Note: Settings this to 'no' breaks Windows 2000 installs (!) -->
          <?define Property_DriverLegacy = "yes" ?>
      <?else ?>
          <?define Property_DriverLegacy = "yes" ?>
      <?endif ?>

  <?endif ?>

  <!-- If we build a combined installer (32- and 64-bit in one installer), we
       use two installer "disks": One for all platform-specific stuff and one which
       contains all common (platform independent) stuff (like manuals, bitmaps etc) -->
  <?if $(env.VBOX_WITH_COMBINED_PACKAGE) = "yes" ?>
      <?define Property_DiskIdCommon = "2" ?>
  <?else ?>
      <?define Property_DiskIdCommon = "1" ?>
  <?endif ?>

</Include>