testsqlite3.vcxproj 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.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>{245107B2-644D-40E7-AB16-D5AE1911D3BF}</ProjectGuid>
  23. <RootNamespace>testsqlite3</RootNamespace>
  24. <Keyword>Win32Proj</Keyword>
  25. <WindowsTargetPlatformVersion>10.0.17134.0</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>v141</PlatformToolset>
  31. <UseOfMfc>Dynamic</UseOfMfc>
  32. <CharacterSet>MultiByte</CharacterSet>
  33. <WholeProgramOptimization>true</WholeProgramOptimization>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  36. <ConfigurationType>Application</ConfigurationType>
  37. <PlatformToolset>v141</PlatformToolset>
  38. <UseOfMfc>Dynamic</UseOfMfc>
  39. <CharacterSet>MultiByte</CharacterSet>
  40. <WholeProgramOptimization>true</WholeProgramOptimization>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  43. <ConfigurationType>Application</ConfigurationType>
  44. <PlatformToolset>v141</PlatformToolset>
  45. <UseOfMfc>Dynamic</UseOfMfc>
  46. <CharacterSet>MultiByte</CharacterSet>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  49. <ConfigurationType>Application</ConfigurationType>
  50. <PlatformToolset>v141</PlatformToolset>
  51. <UseOfMfc>Static</UseOfMfc>
  52. <CharacterSet>MultiByte</CharacterSet>
  53. </PropertyGroup>
  54. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  55. <ImportGroup Label="ExtensionSettings">
  56. </ImportGroup>
  57. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  58. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  59. </ImportGroup>
  60. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <PropertyGroup Label="UserMacros" />
  70. <PropertyGroup>
  71. <_ProjectFileVersion>15.0.27625.0</_ProjectFileVersion>
  72. </PropertyGroup>
  73. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  74. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  75. <IntDir>$(Configuration)\</IntDir>
  76. <LinkIncremental>true</LinkIncremental>
  77. <IncludePath>$(IncludePath)</IncludePath>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  80. <LinkIncremental>true</LinkIncremental>
  81. <IncludePath>$(IncludePath)</IncludePath>
  82. </PropertyGroup>
  83. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  84. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  85. <IntDir>$(Configuration)\</IntDir>
  86. <LinkIncremental>false</LinkIncremental>
  87. </PropertyGroup>
  88. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  89. <LinkIncremental>false</LinkIncremental>
  90. </PropertyGroup>
  91. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  92. <ClCompile>
  93. <Optimization>Disabled</Optimization>
  94. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  95. <MinimalRebuild>true</MinimalRebuild>
  96. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  97. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  98. <PrecompiledHeader>Use</PrecompiledHeader>
  99. <WarningLevel>Level3</WarningLevel>
  100. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  101. <AdditionalIncludeDirectories>$(PROTO)</AdditionalIncludeDirectories>
  102. </ClCompile>
  103. <Link>
  104. <GenerateDebugInformation>true</GenerateDebugInformation>
  105. <SubSystem>Console</SubSystem>
  106. <TargetMachine>MachineX86</TargetMachine>
  107. <AdditionalDependencies>libprotobufd.lib</AdditionalDependencies>
  108. </Link>
  109. </ItemDefinitionGroup>
  110. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  111. <ClCompile>
  112. <Optimization>Disabled</Optimization>
  113. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  114. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  115. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  116. <PrecompiledHeader>Use</PrecompiledHeader>
  117. <WarningLevel>Level3</WarningLevel>
  118. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  119. <AdditionalIncludeDirectories>$(PROTO)</AdditionalIncludeDirectories>
  120. </ClCompile>
  121. <Link>
  122. <GenerateDebugInformation>true</GenerateDebugInformation>
  123. <SubSystem>Console</SubSystem>
  124. <AdditionalDependencies>libprotobufd.lib;%(AdditionalDependencies)</AdditionalDependencies>
  125. </Link>
  126. </ItemDefinitionGroup>
  127. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  128. <ClCompile>
  129. <Optimization>MaxSpeed</Optimization>
  130. <IntrinsicFunctions>true</IntrinsicFunctions>
  131. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  132. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  133. <FunctionLevelLinking>true</FunctionLevelLinking>
  134. <PrecompiledHeader>Use</PrecompiledHeader>
  135. <WarningLevel>Level3</WarningLevel>
  136. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  137. </ClCompile>
  138. <Link>
  139. <GenerateDebugInformation>true</GenerateDebugInformation>
  140. <SubSystem>Console</SubSystem>
  141. <OptimizeReferences>true</OptimizeReferences>
  142. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  143. <TargetMachine>MachineX86</TargetMachine>
  144. </Link>
  145. </ItemDefinitionGroup>
  146. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  147. <ClCompile>
  148. <Optimization>MaxSpeed</Optimization>
  149. <IntrinsicFunctions>true</IntrinsicFunctions>
  150. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  151. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  152. <FunctionLevelLinking>true</FunctionLevelLinking>
  153. <PrecompiledHeader>Use</PrecompiledHeader>
  154. <WarningLevel>Level3</WarningLevel>
  155. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  156. </ClCompile>
  157. <Link>
  158. <GenerateDebugInformation>true</GenerateDebugInformation>
  159. <SubSystem>Console</SubSystem>
  160. <OptimizeReferences>true</OptimizeReferences>
  161. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  162. <AdditionalDependencies>libprotoc.lib</AdditionalDependencies>
  163. </Link>
  164. </ItemDefinitionGroup>
  165. <ItemGroup>
  166. <ClCompile Include="DataImpl.cpp">
  167. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">NotUsing</PrecompiledHeader>
  168. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  169. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  170. </ClCompile>
  171. <ClCompile Include="ISQLite3.cpp" />
  172. <ClCompile Include="stdafx.cpp">
  173. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  174. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
  175. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  176. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
  177. </ClCompile>
  178. <ClCompile Include="StringProcess.cpp" />
  179. <ClCompile Include="table.pb.cc">
  180. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  181. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">NotUsing</PrecompiledHeader>
  182. </ClCompile>
  183. <ClCompile Include="TaskInfoMessage.pb.cc">
  184. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">NotUsing</PrecompiledHeader>
  185. </ClCompile>
  186. <ClCompile Include="testsqlite3.cpp" />
  187. </ItemGroup>
  188. <ItemGroup>
  189. <ClInclude Include="DataImpl.h" />
  190. <ClInclude Include="Example.h" />
  191. <ClInclude Include="ISQLite3.h" />
  192. <ClInclude Include="Resource.h" />
  193. <ClInclude Include="stdafx.h" />
  194. <ClInclude Include="StringProcess.h" />
  195. <ClInclude Include="table.pb.h" />
  196. <ClInclude Include="targetver.h" />
  197. <ClInclude Include="TaskInfoMessage.pb.h" />
  198. <ClInclude Include="testsqlite3.h" />
  199. </ItemGroup>
  200. <ItemGroup>
  201. <ResourceCompile Include="testsqlite3.rc" />
  202. </ItemGroup>
  203. <ItemGroup>
  204. <Text Include="ReadMe.txt" />
  205. </ItemGroup>
  206. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  207. <ImportGroup Label="ExtensionTargets">
  208. </ImportGroup>
  209. </Project>