1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <ProductVersion>3.10</ProductVersion>
- <ProjectGuid>b67ce3b2-d1d7-45b9-98da-164e3837d7bc</ProjectGuid>
- <SchemaVersion>2.0</SchemaVersion>
- <OutputName>espeak-ng</OutputName>
- <OutputType>Package</OutputType>
- <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
- <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <OutputPath>bin\$(Configuration)\</OutputPath>
- <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
- <DefineConstants>Debug</DefineConstants>
- <SuppressAllWarnings>False</SuppressAllWarnings>
- <Pedantic>True</Pedantic>
- <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <OutputPath>bin\$(Configuration)\</OutputPath>
- <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
- <SuppressAllWarnings>False</SuppressAllWarnings>
- <Pedantic>True</Pedantic>
- <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
- <DefineConstants>Debug</DefineConstants>
- <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
- <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
- <SuppressAllWarnings>False</SuppressAllWarnings>
- <Pedantic>True</Pedantic>
- <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
- <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
- <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
- <SuppressAllWarnings>False</SuppressAllWarnings>
- <Pedantic>True</Pedantic>
- <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="Product.wxs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\espeak-ng.vcxproj">
- <Name>espeak-ng</Name>
- <Project>{a745d521-5b19-49db-89d3-d0a3be64d97b}</Project>
- <Private>True</Private>
- <DoNotHarvest>True</DoNotHarvest>
- <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
- <RefTargetDir>INSTALLFOLDER</RefTargetDir>
- </ProjectReference>
- <ProjectReference Include="..\libespeak-ng.vcxproj">
- <Name>libespeak-ng</Name>
- <Project>{a47a0cfd-fe52-40b4-8cec-ee1bd4282cdd}</Project>
- <Private>True</Private>
- <DoNotHarvest>True</DoNotHarvest>
- <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
- <RefTargetDir>INSTALLFOLDER</RefTargetDir>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(WixTargetsPath)" />
- <!--
- 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>
|