Properties.wxi revision 1147bd0ba1321d92a90514742709a20a244c255b
486a57e2622e0076c60148ad1634608afdefc9degryzor<?xml version="1.0" encoding="utf-8"?>
486a57e2622e0076c60148ad1634608afdefc9degryzor<!--
486a57e2622e0076c60148ad1634608afdefc9degryzor VirtualBox Windows Installation Script (WiX)
4a56677aad9b66a36f3dc9fddbca8dc1230ad471rbowen
486a57e2622e0076c60148ad1634608afdefc9degryzor Copyright (C) 2014 Oracle Corporation
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor This file is part of VirtualBox Open Source Edition (OSE), as
486a57e2622e0076c60148ad1634608afdefc9degryzor available from http://www.virtualbox.org. This file is free software;
486a57e2622e0076c60148ad1634608afdefc9degryzor you can redistribute it and/or modify it under the terms of the GNU
486a57e2622e0076c60148ad1634608afdefc9degryzor General Public License (GPL) as published by the Free Software
486a57e2622e0076c60148ad1634608afdefc9degryzor Foundation, in version 2 as it comes in the "COPYING" file of the
486a57e2622e0076c60148ad1634608afdefc9degryzor VirtualBox OSE distribution. VirtualBox OSE is distributed in the
486a57e2622e0076c60148ad1634608afdefc9degryzor hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
486a57e2622e0076c60148ad1634608afdefc9degryzor-->
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor<Include xmlns="http://schemas.microsoft.com/wix/2006/wix"
486a57e2622e0076c60148ad1634608afdefc9degryzor xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor <!-- TODO: Add "VBox" prefix! -->
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_RegKey = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_RegKeyInstall = "Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox\Install" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Upgrade = "yes" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Version = "$(env.VBOX_VERSION_STRING_RAW)" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_VersionExt = "$(env.VBOX_VERSION_STRING)" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor <?if $(env.BUILD_TARGET_ARCH) = "amd64" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_ProgramFiles = "ProgramFiles64Folder" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Platform = "x64" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Win64 = "yes" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor <?if $(env.VBOX_SIGNING_MODE) != none ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_DriverLegacy = "no" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?else ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_DriverLegacy = "yes" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?endif ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor <?else ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_ProgramFiles = "ProgramFilesFolder" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Platform = "x86" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor <?define Property_Win64 = "no" ?>
486a57e2622e0076c60148ad1634608afdefc9degryzor
486a57e2622e0076c60148ad1634608afdefc9degryzor <?if $(env.VBOX_SIGNING_MODE) != none ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <!-- Note: Settings this to 'no' breaks Windows 2000 installs (!) -->
3841a292dc897875faf23e639807abcc90082f3clgentis <?define Property_DriverLegacy = "yes" ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?else ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?define Property_DriverLegacy = "yes" ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?endif ?>
3841a292dc897875faf23e639807abcc90082f3clgentis
3841a292dc897875faf23e639807abcc90082f3clgentis <?endif ?>
3841a292dc897875faf23e639807abcc90082f3clgentis
a52bc627e27a94219f06896ac183d90deb79ad31lgentis <!-- If we build a combined installer (32- and 64-bit in one installer), we
3841a292dc897875faf23e639807abcc90082f3clgentis use two installer "disks": One for all platform-specific stuff and one which
3841a292dc897875faf23e639807abcc90082f3clgentis contains all common (platform independent) stuff (like manuals, bitmaps etc) -->
3841a292dc897875faf23e639807abcc90082f3clgentis <?if $(env.VBOX_WITH_COMBINED_PACKAGE) = "yes" ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?define Property_DiskIdCommon = "2" ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?else ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?define Property_DiskIdCommon = "1" ?>
3841a292dc897875faf23e639807abcc90082f3clgentis <?endif ?>
3841a292dc897875faf23e639807abcc90082f3clgentis
3841a292dc897875faf23e639807abcc90082f3clgentis</Include>
3841a292dc897875faf23e639807abcc90082f3clgentis