89 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
						|
  <!-- https://wixtoolset.org/documentation/manual/v3/msbuild/task_reference/candle.html -->
 | 
						|
  <!-- standardize on JUCE platform names -->
 | 
						|
  <PropertyGroup Condition=" '$(Platform)' == 'Win32' ">
 | 
						|
    <!-- change candle's arch option -->
 | 
						|
    <InstallerPlatform>x86</InstallerPlatform>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup>
 | 
						|
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 | 
						|
    <Platform Condition=" '$(Platform)' == '' ">Win32</Platform>
 | 
						|
    <ProductVersion>3.10</ProductVersion>
 | 
						|
    <ProjectGuid>be799ae7-8c17-4670-85a8-e3d3558385a7</ProjectGuid>
 | 
						|
    <SchemaVersion>2.0</SchemaVersion>
 | 
						|
    <OutputName>WixSetup</OutputName>
 | 
						|
    <OutputType>Package</OutputType>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
 | 
						|
    <OutputPath>$(Platform)\$(Configuration)\bin\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
 | 
						|
    <DefineConstants>Debug</DefineConstants>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
 | 
						|
    <OutputPath>$(Platform)\$(Configuration)\bin\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Win32' ">
 | 
						|
    <OutputPath>$(Platform)\$(Configuration)\bin\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
 | 
						|
    <DefineConstants>Debug</DefineConstants>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' ">
 | 
						|
    <OutputPath>$(Platform)\$(Configuration)\bin\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
 | 
						|
  </PropertyGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <WixExtension Include="WixUIExtension">
 | 
						|
      <HintPath>$(WixToolPath)WixUIExtension.dll</HintPath>
 | 
						|
      <Name>WixUIExtension</Name>
 | 
						|
    </WixExtension>
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <Compile Include="MyWelcomeEulaDlg.wxs" />
 | 
						|
    <Compile Include="Product.wxs" />
 | 
						|
    <Compile Include="WixUI_MyMinimal.wxs" />
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <ProjectReference Include="..\VisualStudio2017\juicysfplugin_StandalonePlugin.vcxproj">
 | 
						|
      <Name>juicysfplugin_StandalonePlugin</Name>
 | 
						|
      <Project>{7c3ab9be-365a-0ef7-aa2a-5b044fe497e5}</Project>
 | 
						|
      <Private>True</Private>
 | 
						|
      <DoNotHarvest>True</DoNotHarvest>
 | 
						|
      <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
 | 
						|
      <RefTargetDir>INSTALLFOLDER</RefTargetDir>
 | 
						|
    </ProjectReference>
 | 
						|
    <ProjectReference Include="..\VisualStudio2017\juicysfplugin_VST.vcxproj">
 | 
						|
      <Name>juicysfplugin_VST</Name>
 | 
						|
      <Project>{f47a6c45-0c65-bb36-f74e-bccdf23f5eca}</Project>
 | 
						|
      <Private>True</Private>
 | 
						|
      <DoNotHarvest>True</DoNotHarvest>
 | 
						|
      <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
 | 
						|
      <RefTargetDir>INSTALLFOLDER</RefTargetDir>
 | 
						|
    </ProjectReference>
 | 
						|
    <ProjectReference Include="..\VisualStudio2017\juicysfplugin_VST3.vcxproj">
 | 
						|
      <Name>juicysfplugin_VST3</Name>
 | 
						|
      <Project>{70a2c49a-5df9-60c9-981b-d030ade816bf}</Project>
 | 
						|
      <Private>True</Private>
 | 
						|
      <DoNotHarvest>True</DoNotHarvest>
 | 
						|
      <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
 | 
						|
      <RefTargetDir>INSTALLFOLDER</RefTargetDir>
 | 
						|
    </ProjectReference>
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <Content Include="Config.wxi" />
 | 
						|
  </ItemGroup>
 | 
						|
  <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
 | 
						|
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
 | 
						|
  <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
 | 
						|
    <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
 | 
						|
  </Target>
 | 
						|
  <!--
 | 
						|
	To modify your build process, add your task inside one of the targets below and uncomment it.
 | 
						|
	Other similar extension points exist, see Wix.targets.
 | 
						|
	<Target Name="BeforeBuild">
 | 
						|
	</Target>
 | 
						|
	<Target Name="AfterBuild">
 | 
						|
	</Target>
 | 
						|
	-->
 | 
						|
</Project> |