eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

installer.wixproj 3.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>3.10</ProductVersion>
  7. <ProjectGuid>b67ce3b2-d1d7-45b9-98da-164e3837d7bc</ProjectGuid>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <OutputName>espeak-ng</OutputName>
  10. <OutputType>Package</OutputType>
  11. <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
  12. <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  15. <OutputPath>bin\$(Configuration)\</OutputPath>
  16. <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
  17. <DefineConstants>Debug</DefineConstants>
  18. <SuppressAllWarnings>False</SuppressAllWarnings>
  19. <Pedantic>True</Pedantic>
  20. <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  23. <OutputPath>bin\$(Configuration)\</OutputPath>
  24. <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
  25. <SuppressAllWarnings>False</SuppressAllWarnings>
  26. <Pedantic>True</Pedantic>
  27. <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
  30. <DefineConstants>Debug</DefineConstants>
  31. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  32. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  33. <SuppressAllWarnings>False</SuppressAllWarnings>
  34. <Pedantic>True</Pedantic>
  35. <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
  38. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  39. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  40. <SuppressAllWarnings>False</SuppressAllWarnings>
  41. <Pedantic>True</Pedantic>
  42. <LinkerAdditionalOptions>-ext WixUIExtension</LinkerAdditionalOptions>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Compile Include="Product.wxs" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\espeak-ng.vcxproj">
  49. <Name>espeak-ng</Name>
  50. <Project>{a745d521-5b19-49db-89d3-d0a3be64d97b}</Project>
  51. <Private>True</Private>
  52. <DoNotHarvest>True</DoNotHarvest>
  53. <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
  54. <RefTargetDir>INSTALLFOLDER</RefTargetDir>
  55. </ProjectReference>
  56. <ProjectReference Include="..\libespeak-ng.vcxproj">
  57. <Name>libespeak-ng</Name>
  58. <Project>{a47a0cfd-fe52-40b4-8cec-ee1bd4282cdd}</Project>
  59. <Private>True</Private>
  60. <DoNotHarvest>True</DoNotHarvest>
  61. <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
  62. <RefTargetDir>INSTALLFOLDER</RefTargetDir>
  63. </ProjectReference>
  64. </ItemGroup>
  65. <Import Project="$(WixTargetsPath)" />
  66. <!--
  67. To modify your build process, add your task inside one of the targets below and uncomment it.
  68. Other similar extension points exist, see Wix.targets.
  69. <Target Name="BeforeBuild">
  70. </Target>
  71. <Target Name="AfterBuild">
  72. </Target>
  73. -->
  74. </Project>