VBoxMergeApp.wxi revision bfa1d26eaead4b1c78fd46a0411c3c10373b9f6b
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<!--
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte VirtualBox Windows Installation Script (WiX)
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Copyright (C) 2006-2014 Oracle Corporation
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte This file is part of VirtualBox Open Source Edition (OSE), as
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte available from http://www.virtualbox.org. This file is free software;
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte you can redistribute it and/or modify it under the terms of the GNU
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte General Public License (GPL) as published by the Free Software
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Foundation, in version 2 as it comes in the "COPYING" file of the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte VirtualBox OSE distribution. VirtualBox OSE is distributed in the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte-->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_DOCS_PACKING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Directory Id="dir_VBoxAppDocuments" Name="doc">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- The documentation is a separate component. This allows to split the install process
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte into pieces if ever necessary. Maintenance is easier, too. The following component
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte will be installed in the "doc" folder -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_Docs" Guid="40BD12C5-89A8-4B81-8A5E-5EEE2C2763C4"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\Files_Doc.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Directory>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Device driver directory -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Directory Id="dir_VBoxAppDrivers" Name="drivers">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Directory Id="dir_VBoxAppVBoxDrv" Name="vboxdrv">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_VBoxDrv" Guid="D3E2F2BB-569F-46A2-836C-BDF30FF1EDF8" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <difxapp:Driver AddRemovePrograms="no" ForceInstall="yes" DeleteFiles="yes"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Legacy="$(var.Property_DriverLegacy)" Sequence="2" PlugAndPlayPrompt="no"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDrv.sys" Name="VBoxDrv.sys" KeyPath="yes"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDrv.sys"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDrv.inf" Name="VBoxDrv.inf"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDrv.inf" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_SIGNING_MODE)!= none ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDrv.cat" Name="VBoxDrv.cat"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDrv.cat" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Directory>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Directory> <!-- Directory "drivers" -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- National Language Support directory -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Directory Id="dir_VBoxAppNLS" Name="nls">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_NLS" Guid="D63517D7-1CF3-4D06-B3EE-C561E323069B" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include the autogenerated NLS file list -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\VBoxGuiNLS.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Directory>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- COM components have a separate entry mainly because of the KeyPath attribute (that hints the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte TypeLib element where to take the TLB resource from) may appear only once per component -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_MainCOM" Guid="CD4A3C6C-C2D5-428D-90A1-B6DA3D0777D6" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Note: This file ID *must not* be changed because of our typelib template generation file! -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="VBoxSVC" Name="VBoxSVC.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSVC.exe">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- We set KeyPath on this file to instruct TypeLib to read the TLB resource from it
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte and create appropriate Interface registry entries. Note that the same TLB is present
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte in VBoxSVC.exe - it's just a matter of choice which one to use -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Note: This file ID *must not* be changed because of our typelib template generation file! -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="VBoxC" Name="VBoxC.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxC.dll" KeyPath="yes">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include the auto-generated TypeLib block -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\VirtualBox_TypeLib.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!--
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_StartMenuShortcut" Guid="1C137D24-E599-47BD-98D0-2F62F202A8EA" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <RegistryValue Root="HKCU" Key="$(var.Property_RegKeyInstall)" Type="string"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Value="installed" KeyPath="yes" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Shortcut Id="ShortcutStartMenuVBox" Directory="ProgramMenuDir"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Name="VirtualBox" WorkingDirectory="INSTALLDIR" Advertise="no" Target="VirtualBox.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <RemoveFolder Id="ShortcutStartMenuVBoxRemove" On="uninstall" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>-->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!---->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_RegisterExtensions" Guid="FEB8943E-5D60-4E2D-846F-458207019D40"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Win64="$(var.Property_Win64)" KeyPath="yes">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Condition>VBOX_REGISTERFILEEXTENSIONS</Condition>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Register file extensions. Note: Extension IDs *must not* be changed! These specify the actual
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte file extension to handle. Also, here would be the place to add more fancy DDE stuff later.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Important: The IDs in "IconIndex" *must* be matching "Resources\resource.h" -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.vbox" Description="VirtualBox Machine Definition" Icon="file_VBoxRes.dll" IconIndex="-201">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="vbox" ContentType="application/x-virtualbox-vbox">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Verb Id="open" Command="Open" TargetFile="file_VirtualBox.exe" Argument="&quot;%1&quot;" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Extension>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.vbox-extpack" Description="VirtualBox Extension Pack" Icon="file_VBoxRes.dll" IconIndex="-202">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="vbox-extpack" ContentType="application/x-virtualbox-vbox-extpack">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Verb Id="open" Command="Open" TargetFile="file_VirtualBox.exe" Argument="&quot;%1&quot;" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Extension>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.ovf" Description="Open Virtualization Format" Icon="file_VBoxRes.dll" IconIndex="-301">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="ovf" ContentType="application/x-virtualbox-ovf">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Verb Id="open" Command="Open" TargetFile="file_VirtualBox.exe" Argument="&quot;%1&quot;" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Extension>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.ova" Description="Open Virtualization Format Archive" Icon="file_VBoxRes.dll" IconIndex="-302">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="ova" ContentType="application/x-virtualbox-ova">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Verb Id="open" Command="Open" TargetFile="file_VirtualBox.exe" Argument="&quot;%1&quot;" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Extension>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.vdi" Description="Virtual Disk Image" Icon="file_VBoxRes.dll" IconIndex="-303">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="vdi" ContentType="application/x-virtualbox-vdi" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.vmdk" Description="Virtual Machine Disk Format" Icon="file_VBoxRes.dll" IconIndex="-304">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="vmdk" ContentType="application/x-virtualbox-vmdk" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.vhd" Description="Virtual Hard Disk" Icon="file_VBoxRes.dll" IconIndex="-305">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="vhd" ContentType="application/x-virtualbox-vhd" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <ProgId Id="progId_VirtualBox.Shell.hdd" Description="Virtual Hard Disk" Icon="file_VBoxRes.dll" IconIndex="-306">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Extension Id="hdd" ContentType="application/x-virtualbox-hdd" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </ProgId>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component> <!-- cp_RegisterExtensions -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- All Binaries, DLLs (except COM) and drivers are in one component because they belong together. Additional
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte binaries e.g. test tools, utilities etc. should be in another component so they"re clearly separated -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_MainBinaries" Guid="5C8FE57A-F744-4DE0-AA3F-A563F486AD98" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Set required environment variables -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Environment Id="env_VBoxInstallDir" Action="set" Name="VBOX_MSI_INSTALL_PATH"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte System="yes" Part="last" Permanent="no" Value="[msm_VBoxApplicationFolder]" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Files -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_DOCS_PACKING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include all user manual .CHM files (file is generated by makefile) -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\Files_Main.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include all license files (file is generated by makefile) -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\Files_License.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Frontends -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxManage.exe" Name="VBoxManage.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxManage.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxHeadless.exe" Name="VBoxHeadless.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxHeadless.exe">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Create a simple shortcut for VBoxVRDP, which is not present anymore, pointing to VBoxHeadless.exe -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- <Shortcut Id="ShortcutVBoxVRDP" Directory="INSTALLDIR" Name="VBoxVRDP" Show="normal" WorkingDirectory="INSTALLDIR"/> -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_HARDENING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxHeadless.dll" Name="VBoxHeadless.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxHeadless.dll">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxBalloonCtrl.exe" Name="VBoxBalloonCtrl.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxBalloonCtrl.exe"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_vbox_img.exe" Name="vbox-img.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\vbox-img.exe"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Misc tools -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxNetDHCP.exe" Name="VBoxNetDHCP.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxNetDHCP.exe"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_HARDENING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxNetDHCP.dll" Name="VBoxNetDHCP.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxNetDHCP.dll">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxNetNAT.exe" Name="VBoxNetNAT.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxNetNAT.exe"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_HARDENING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxNetNAT.dll" Name="VBoxNetNAT.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxNetNAT.dll">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_EXTPACK) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxExtPackHelperApp.exe" Name="VBoxExtPackHelperApp.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxExtPackHelperApp.exe"/>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_DTRACE) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDTrace.exe" Name="VBoxDTrace.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDTrace.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- VBox DLL files -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDD.dll" Name="VBoxDD.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDD.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDD2.dll" Name="VBoxDD2.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDD2.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDDU.dll" Name="VBoxDDU.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDDU.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxRT.dll" Name="VBoxRT.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxRT.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxREM.dll" Name="VBoxREM.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxREM.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.BUILD_TARGET_ARCH) = "x86" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxREM32.dll" Name="VBoxREM32.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxREM32.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxREM64.dll" Name="VBoxREM64.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxREM64.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSupLib.dll" Name="VBoxSupLib.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSupLib.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxVMM.dll" Name="VBoxVMM.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxVMM.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_VRDP) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxVRDP.dll" Name="VBoxVRDP.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxVRDP.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSharedFolders.dll" Name="VBoxSharedFolders.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSharedFolders.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSharedClipboard.dll" Name="VBoxSharedClipboard.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSharedClipboard.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_DRAG_AND_DROP)= "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDragAndDropSvc.dll" Name="VBoxDragAndDropSvc.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDragAndDropSvc.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_GUEST_PROPS) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxGuestPropSvc.dll" Name="VBoxGuestPropSvc.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxGuestPropSvc.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_GUEST_CONTROL) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxGuestControlSvc.dll" Name="VBoxGuestControlSvc.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxGuestControlSvc.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxHostChannel.dll" Name="VBoxHostChannel.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxHostChannel.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxAuth.dll" Name="VBoxAuth.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxAuth.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxAuthSimple.dll" Name="VBoxAuthSimple.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxAuthSimple.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include resource DLL (icons, ...) -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxRes.dll" Name="VBoxRes.dll" DiskId="$(var.Property_DiskIdCommon)"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxRes.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VMMGC.gc" Name="VMMGC.gc"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VMMGC.gc" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDDGC.gc" Name="VBoxDDGC.gc"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDDGC.gc" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDD2GC.gc" Name="VBoxDD2GC.gc"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDD2GC.gc" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VMMR0.r0" Name="VMMR0.r0"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VMMR0.r0" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDDR0.r0" Name="VBoxDDR0.r0"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDDR0.r0" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDD2R0.r0" Name="VBoxDD2R0.r0"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDD2R0.r0" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_CROGL) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxTestOGL.exe" Name="VBoxTestOGL.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxTestOGL.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Qt frontend -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VirtualBox.exe" Name="VirtualBox.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VirtualBox.exe">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?if $(env.VBOX_WITH_HARDENING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VirtualBox.dll" Name="VirtualBox.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VirtualBox.dll">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_QtCoreVBox4.dll" Name="QtCoreVBox4.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\QtCoreVBox4.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_QtGuiVBox4.dll" Name="QtGuiVBox4.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\QtGuiVBox4.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_QtNetworkVBox4.dll" Name="QtNetworkVBox4.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\QtNetworkVBox4.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_DEBUGGER_GUI) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxDbg.dll" Name="VBoxDbg.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxDbg.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_GUI_USE_QGL) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_QtOpenGLVBox4.dll" Name="QtOpenGLVBox4.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\QtOpenGLVBox4.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_VCC_TOOL_STEM) = "VCC100" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- MS C/C++ v10.0 Runtime DLL files -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_msvcr100.dll" Name="msvcr100.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\msvcr100.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_msvcp100.dll" Name="msvcp100.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\msvcp100.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_VCC_TOOL_STEM) = "VCC110" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- MS C/C++ v11.0 Runtime DLL files -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_msvcr110.dll" Name="msvcr110.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\msvcr110.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_msvcp110.dll" Name="msvcp110.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\msvcp110.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- EFI firmware -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_EFIFW_PACKING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxEFI32.fd" Name="VBoxEFI32.fd" DiskId="$(var.Property_DiskIdCommon)"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxEFI32.fd" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxEFI64.fd" Name="VBoxEFI64.fd" DiskId="$(var.Property_DiskIdCommon)"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxEFI64.fd" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- VBox guest additions -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_ADDITIONS_PACKING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?if $(env.VBOX_WITH_COMBINED_PACKAGE) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxGuestAdditions.iso" Name="VBoxGuestAdditions.iso"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_MULTIARCH_GUEST_ADDITIONS_ISO)\VBoxGuestAdditions.iso"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte DiskId="$(var.Property_DiskIdCommon)" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?else ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxGuestAdditions.iso" Name="VBoxGuestAdditions.iso"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\additions\VBoxGuestAdditions.iso" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Include key for VBox version -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <?include $(env.PATH_TARGET)\VBoxKey.wxi ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component> <!-- MainBinaries -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Qt accessible plugins -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Directory Id="dir_VBoxAppAccessible" Name="accessible">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_QtAccessible" Guid="12040EF9-D4A8-4FB2-A69C-CA2F5C354A45" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_qtaccessiblewidgets4.dll" Name="qtaccessiblewidgets4.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\accessible\qtaccessiblewidgets4.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Directory>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_CROGL) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_VBoxCROpenGL" Guid="874A1297-835A-491D-8A9D-7E723BC29EE7" Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxOGLhostcrutil.dll" Name="VBoxOGLhostcrutil.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxOGLhostcrutil.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxOGLhosterrorspu.dll" Name="VBoxOGLhosterrorspu.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxOGLhosterrorspu.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxOGLrenderspu.dll" Name="VBoxOGLrenderspu.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxOGLrenderspu.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSharedCrOpenGL.dll" Name="VBoxSharedCrOpenGL.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSharedCrOpenGL.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- SDL plugins -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_VBoxSDLBinaries" Guid="F09D5FD9-E176-42B0-90A9-481BB18B0CB4"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSDL.exe" Name="VBoxSDL.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSDL.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_HARDENING) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxSDL.dll" Name="VBoxSDL.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxSDL.dll">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </File>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_SDL.dll" Name="SDL.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\SDL.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_SECURELABEL) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_SDL_ttf.dll" Name="SDL_ttf.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\SDL_ttf.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component> <!-- SDL plugins -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?if $(env.VBOX_WITH_WEBSERVICES) = "yes" ?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- Webservice -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_VBoxWebService" Guid="DD404F04-9874-43E9-AEE2-7762924D922E"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxWebSrv.exe" Name="VBoxWebSrv.exe"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\vboxwebsrv.exe" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte<?endif?>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <!-- C API (glue) bindings -->
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <Component Id="cp_VBoxCAPI" Guid="097F7F53-7111-467F-8E0C-257D9926FDA0"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Win64="$(var.Property_Win64)">
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte <File Id="file_VBoxCAPI.dll" Name="VBoxCAPI.dll"
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte Source="$(env.PATH_OUT)\bin\VBoxCAPI.dll" />
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte </Component>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte</Include>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte