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.

libespeak-ng.vcxproj 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <PropertyGroup Label="Globals">
  22. <ProjectGuid>{A47A0CFD-FE52-40B4-8CEC-EE1BD4282CDD}</ProjectGuid>
  23. <Keyword>Win32Proj</Keyword>
  24. <RootNamespace>libespeakng</RootNamespace>
  25. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  26. </PropertyGroup>
  27. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  29. <ConfigurationType>DynamicLibrary</ConfigurationType>
  30. <UseDebugLibraries>true</UseDebugLibraries>
  31. <PlatformToolset>v140</PlatformToolset>
  32. <CharacterSet>Unicode</CharacterSet>
  33. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  35. <ConfigurationType>DynamicLibrary</ConfigurationType>
  36. <UseDebugLibraries>false</UseDebugLibraries>
  37. <PlatformToolset>v140</PlatformToolset>
  38. <WholeProgramOptimization>true</WholeProgramOptimization>
  39. <CharacterSet>Unicode</CharacterSet>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  42. <ConfigurationType>DynamicLibrary</ConfigurationType>
  43. <UseDebugLibraries>true</UseDebugLibraries>
  44. <PlatformToolset>v140</PlatformToolset>
  45. <CharacterSet>Unicode</CharacterSet>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  48. <ConfigurationType>DynamicLibrary</ConfigurationType>
  49. <UseDebugLibraries>false</UseDebugLibraries>
  50. <PlatformToolset>v140</PlatformToolset>
  51. <WholeProgramOptimization>true</WholeProgramOptimization>
  52. <CharacterSet>Unicode</CharacterSet>
  53. </PropertyGroup>
  54. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  55. <ImportGroup Label="ExtensionSettings">
  56. </ImportGroup>
  57. <ImportGroup Label="Shared">
  58. </ImportGroup>
  59. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  60. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  61. </ImportGroup>
  62. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  63. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  64. </ImportGroup>
  65. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  66. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  67. </ImportGroup>
  68. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  69. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  70. </ImportGroup>
  71. <PropertyGroup Label="UserMacros" />
  72. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  73. <LinkIncremental>true</LinkIncremental>
  74. </PropertyGroup>
  75. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  76. <LinkIncremental>true</LinkIncremental>
  77. </PropertyGroup>
  78. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  79. <LinkIncremental>false</LinkIncremental>
  80. </PropertyGroup>
  81. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  82. <LinkIncremental>false</LinkIncremental>
  83. </PropertyGroup>
  84. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  85. <ClCompile>
  86. <PrecompiledHeader>
  87. </PrecompiledHeader>
  88. <WarningLevel>Level3</WarningLevel>
  89. <Optimization>Disabled</Optimization>
  90. <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)/../include;$(ProjectDir)/../include/compat</AdditionalIncludeDirectories>
  91. <PreprocessorDefinitions>_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  92. </ClCompile>
  93. <Link>
  94. <SubSystem>Windows</SubSystem>
  95. <GenerateDebugInformation>true</GenerateDebugInformation>
  96. </Link>
  97. </ItemDefinitionGroup>
  98. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  99. <ClCompile>
  100. <PrecompiledHeader>
  101. </PrecompiledHeader>
  102. <WarningLevel>Level3</WarningLevel>
  103. <Optimization>Disabled</Optimization>
  104. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;LIBESPEAKNG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  105. </ClCompile>
  106. <Link>
  107. <SubSystem>Windows</SubSystem>
  108. <GenerateDebugInformation>true</GenerateDebugInformation>
  109. </Link>
  110. </ItemDefinitionGroup>
  111. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  112. <ClCompile>
  113. <WarningLevel>Level3</WarningLevel>
  114. <PrecompiledHeader>
  115. </PrecompiledHeader>
  116. <Optimization>MaxSpeed</Optimization>
  117. <FunctionLevelLinking>true</FunctionLevelLinking>
  118. <IntrinsicFunctions>true</IntrinsicFunctions>
  119. <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)/../include;$(ProjectDir)/../include/compat</AdditionalIncludeDirectories>
  120. <PreprocessorDefinitions>_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  121. </ClCompile>
  122. <Link>
  123. <SubSystem>Windows</SubSystem>
  124. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  125. <OptimizeReferences>true</OptimizeReferences>
  126. <GenerateDebugInformation>true</GenerateDebugInformation>
  127. </Link>
  128. </ItemDefinitionGroup>
  129. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  130. <ClCompile>
  131. <WarningLevel>Level3</WarningLevel>
  132. <PrecompiledHeader>
  133. </PrecompiledHeader>
  134. <Optimization>MaxSpeed</Optimization>
  135. <FunctionLevelLinking>true</FunctionLevelLinking>
  136. <IntrinsicFunctions>true</IntrinsicFunctions>
  137. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;LIBESPEAKNG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  138. </ClCompile>
  139. <Link>
  140. <SubSystem>Windows</SubSystem>
  141. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  142. <OptimizeReferences>true</OptimizeReferences>
  143. <GenerateDebugInformation>true</GenerateDebugInformation>
  144. </Link>
  145. </ItemDefinitionGroup>
  146. <ItemGroup>
  147. <ClCompile Include="..\libespeak-ng\compiledata.c" />
  148. <ClCompile Include="..\libespeak-ng\compiledict.c" />
  149. <ClCompile Include="..\libespeak-ng\compilembrola.c" />
  150. <ClCompile Include="..\libespeak-ng\dictionary.c" />
  151. <ClCompile Include="..\libespeak-ng\error.c" />
  152. <ClCompile Include="..\libespeak-ng\espeak_api.c" />
  153. <ClCompile Include="..\libespeak-ng\ieee80.c" />
  154. <ClCompile Include="..\libespeak-ng\intonation.c" />
  155. <ClCompile Include="..\libespeak-ng\numbers.c" />
  156. <ClCompile Include="..\libespeak-ng\phonemelist.c" />
  157. <ClCompile Include="..\libespeak-ng\readclause.c" />
  158. <ClCompile Include="..\libespeak-ng\setlengths.c" />
  159. <ClCompile Include="..\libespeak-ng\spect.c" />
  160. <ClCompile Include="..\libespeak-ng\speech.c" />
  161. <ClCompile Include="..\libespeak-ng\synthdata.c" />
  162. <ClCompile Include="..\libespeak-ng\synthesize.c" />
  163. <ClCompile Include="..\libespeak-ng\synth_mbrola.c" />
  164. <ClCompile Include="..\libespeak-ng\translate.c" />
  165. <ClCompile Include="..\libespeak-ng\tr_languages.c" />
  166. <ClCompile Include="..\libespeak-ng\voices.c" />
  167. <ClCompile Include="..\libespeak-ng\wavegen.c" />
  168. </ItemGroup>
  169. <ItemGroup>
  170. <ClInclude Include="..\include\espeak-ng\espeak_ng.h" />
  171. <ClInclude Include="..\include\espeak\speak_lib.h" />
  172. <ClInclude Include="..\libespeak-ng\error.h" />
  173. <ClInclude Include="..\libespeak-ng\phoneme.h" />
  174. <ClInclude Include="..\libespeak-ng\sintab.h" />
  175. <ClInclude Include="..\libespeak-ng\spect.h" />
  176. <ClInclude Include="..\libespeak-ng\speech.h" />
  177. <ClInclude Include="..\libespeak-ng\synthesize.h" />
  178. <ClInclude Include="..\libespeak-ng\translate.h" />
  179. <ClInclude Include="..\libespeak-ng\voice.h" />
  180. <ClInclude Include="config.h" />
  181. </ItemGroup>
  182. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  183. <ImportGroup Label="ExtensionTargets">
  184. </ImportGroup>
  185. </Project>