testparser.vcxproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</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>{611BF6C7-332A-49BB-B2A3-80AFD5B785D9}</ProjectGuid>
  23. <RootNamespace>testparser</RootNamespace>
  24. <Keyword>Win32Proj</Keyword>
  25. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  26. </PropertyGroup>
  27. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  29. <ConfigurationType>Application</ConfigurationType>
  30. <PlatformToolset>v140_xp</PlatformToolset>
  31. <CharacterSet>MultiByte</CharacterSet>
  32. <WholeProgramOptimization>true</WholeProgramOptimization>
  33. </PropertyGroup>
  34. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  35. <ConfigurationType>Application</ConfigurationType>
  36. <PlatformToolset>v140_xp</PlatformToolset>
  37. <CharacterSet>MultiByte</CharacterSet>
  38. <WholeProgramOptimization>true</WholeProgramOptimization>
  39. </PropertyGroup>
  40. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  41. <ConfigurationType>Application</ConfigurationType>
  42. <PlatformToolset>v140_xp</PlatformToolset>
  43. <CharacterSet>MultiByte</CharacterSet>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  46. <ConfigurationType>Application</ConfigurationType>
  47. <PlatformToolset>v140_xp</PlatformToolset>
  48. <CharacterSet>MultiByte</CharacterSet>
  49. </PropertyGroup>
  50. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  51. <ImportGroup Label="ExtensionSettings">
  52. </ImportGroup>
  53. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  54. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  55. </ImportGroup>
  56. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  57. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  58. </ImportGroup>
  59. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  60. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  61. </ImportGroup>
  62. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  63. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  64. </ImportGroup>
  65. <PropertyGroup Label="UserMacros" />
  66. <PropertyGroup>
  67. <_ProjectFileVersion>14.0.25420.1</_ProjectFileVersion>
  68. </PropertyGroup>
  69. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  70. <OutDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</OutDir>
  71. <IntDir>$(Configuration)\$(ProjectName)\</IntDir>
  72. <LinkIncremental>true</LinkIncremental>
  73. </PropertyGroup>
  74. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  75. <LinkIncremental>true</LinkIncremental>
  76. <IntDir>$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
  77. </PropertyGroup>
  78. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  79. <OutDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</OutDir>
  80. <IntDir>$(Configuration)\$(ProjectName)\</IntDir>
  81. <LinkIncremental>false</LinkIncremental>
  82. </PropertyGroup>
  83. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  84. <LinkIncremental>false</LinkIncremental>
  85. <IntDir>$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
  86. </PropertyGroup>
  87. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  88. <ClCompile>
  89. <Optimization>Disabled</Optimization>
  90. <AdditionalIncludeDirectories>..\src\hunspell;..\src\parsers;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  91. <PreprocessorDefinitions>W32;WIN32;_DEBUG;_CONSOLE;HUNSPELL_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  92. <MinimalRebuild>true</MinimalRebuild>
  93. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  94. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  95. <PrecompiledHeader />
  96. <ProgramDataBaseFileName>$(IntDir)$(ProjectName).pdb</ProgramDataBaseFileName>
  97. <WarningLevel>Level4</WarningLevel>
  98. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  99. <DisableSpecificWarnings>4706</DisableSpecificWarnings>
  100. </ClCompile>
  101. <Link>
  102. <GenerateDebugInformation>true</GenerateDebugInformation>
  103. <SubSystem>Console</SubSystem>
  104. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  105. <DataExecutionPrevention />
  106. <TargetMachine>MachineX86</TargetMachine>
  107. </Link>
  108. </ItemDefinitionGroup>
  109. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  110. <ClCompile>
  111. <Optimization>Disabled</Optimization>
  112. <AdditionalIncludeDirectories>..\src\hunspell;..\src\parsers;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  113. <PreprocessorDefinitions>W32;WIN32;_DEBUG;_CONSOLE;HUNSPELL_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  114. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  115. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  116. <PrecompiledHeader>
  117. </PrecompiledHeader>
  118. <WarningLevel>Level4</WarningLevel>
  119. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  120. <ProgramDataBaseFileName>$(IntDir)$(ProjectName).pdb</ProgramDataBaseFileName>
  121. <DisableSpecificWarnings>4706</DisableSpecificWarnings>
  122. </ClCompile>
  123. <Link>
  124. <GenerateDebugInformation>true</GenerateDebugInformation>
  125. <SubSystem>Console</SubSystem>
  126. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  127. <DataExecutionPrevention>
  128. </DataExecutionPrevention>
  129. </Link>
  130. </ItemDefinitionGroup>
  131. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  132. <ClCompile>
  133. <Optimization>Full</Optimization>
  134. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  135. <AdditionalIncludeDirectories>..\src\hunspell;..\src\parsers;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  136. <PreprocessorDefinitions>W32;WIN32;NDEBUG;_CONSOLE;HUNSPELL_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  137. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  138. <PrecompiledHeader />
  139. <ProgramDataBaseFileName>$(IntDir)$(ProjectName).pdb</ProgramDataBaseFileName>
  140. <WarningLevel>Level4</WarningLevel>
  141. <DebugInformationFormat />
  142. <DisableSpecificWarnings>4706</DisableSpecificWarnings>
  143. </ClCompile>
  144. <Link>
  145. <GenerateDebugInformation>true</GenerateDebugInformation>
  146. <SubSystem>Console</SubSystem>
  147. <OptimizeReferences>true</OptimizeReferences>
  148. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  149. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  150. <DataExecutionPrevention />
  151. <TargetMachine>MachineX86</TargetMachine>
  152. </Link>
  153. </ItemDefinitionGroup>
  154. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  155. <ClCompile>
  156. <Optimization>Full</Optimization>
  157. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  158. <AdditionalIncludeDirectories>..\src\hunspell;..\src\parsers;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  159. <PreprocessorDefinitions>W32;WIN32;NDEBUG;_CONSOLE;HUNSPELL_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  160. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  161. <PrecompiledHeader>
  162. </PrecompiledHeader>
  163. <ProgramDataBaseFileName>$(IntDir)$(ProjectName).pdb</ProgramDataBaseFileName>
  164. <WarningLevel>Level4</WarningLevel>
  165. <DebugInformationFormat>
  166. </DebugInformationFormat>
  167. <DisableSpecificWarnings>4706</DisableSpecificWarnings>
  168. </ClCompile>
  169. <Link>
  170. <GenerateDebugInformation>true</GenerateDebugInformation>
  171. <SubSystem>Console</SubSystem>
  172. <OptimizeReferences>true</OptimizeReferences>
  173. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  174. <RandomizedBaseAddress>false</RandomizedBaseAddress>
  175. <DataExecutionPrevention>
  176. </DataExecutionPrevention>
  177. </Link>
  178. </ItemDefinitionGroup>
  179. <ItemGroup>
  180. <ClCompile Include="..\src\parsers\firstparser.cxx" />
  181. <ClCompile Include="..\src\parsers\htmlparser.cxx" />
  182. <ClCompile Include="..\src\parsers\latexparser.cxx" />
  183. <ClCompile Include="..\src\parsers\manparser.cxx" />
  184. <ClCompile Include="..\src\parsers\odfparser.cxx" />
  185. <ClCompile Include="..\src\parsers\testparser.cxx" />
  186. <ClCompile Include="..\src\parsers\textparser.cxx" />
  187. <ClCompile Include="..\src\parsers\xmlparser.cxx" />
  188. </ItemGroup>
  189. <ItemGroup>
  190. <ClInclude Include="..\src\parsers\firstparser.hxx" />
  191. <ClInclude Include="..\src\parsers\htmlparser.hxx" />
  192. <ClInclude Include="..\src\parsers\latexparser.hxx" />
  193. <ClInclude Include="..\src\parsers\manparser.hxx" />
  194. <ClInclude Include="..\src\parsers\odfparser.hxx" />
  195. <ClInclude Include="..\src\parsers\textparser.hxx" />
  196. <ClInclude Include="..\src\parsers\xmlparser.hxx" />
  197. </ItemGroup>
  198. <ItemGroup>
  199. <ProjectReference Include="libhunspell.vcxproj">
  200. <Project>{53609bb3-d874-465c-af7b-df626db0d89b}</Project>
  201. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  202. </ProjectReference>
  203. </ItemGroup>
  204. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  205. <ImportGroup Label="ExtensionTargets">
  206. </ImportGroup>
  207. </Project>