sqlite.vcxproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.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. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{59613141-BCEF-4E2D-8F11-93B91CB2517D}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>sqlite</RootNamespace>
  17. <SccProjectName>
  18. </SccProjectName>
  19. <SccAuxPath>
  20. </SccAuxPath>
  21. <SccLocalPath>
  22. </SccLocalPath>
  23. <SccProvider>
  24. </SccProvider>
  25. </PropertyGroup>
  26. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  28. <ConfigurationType>StaticLibrary</ConfigurationType>
  29. <UseDebugLibraries>true</UseDebugLibraries>
  30. <CharacterSet>Unicode</CharacterSet>
  31. <PlatformToolset>v120</PlatformToolset>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  34. <ConfigurationType>StaticLibrary</ConfigurationType>
  35. <UseDebugLibraries>false</UseDebugLibraries>
  36. <WholeProgramOptimization>true</WholeProgramOptimization>
  37. <CharacterSet>Unicode</CharacterSet>
  38. <PlatformToolset>v120</PlatformToolset>
  39. </PropertyGroup>
  40. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  41. <ImportGroup Label="ExtensionSettings">
  42. </ImportGroup>
  43. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  44. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  45. </ImportGroup>
  46. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  47. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  48. </ImportGroup>
  49. <PropertyGroup Label="UserMacros" />
  50. <PropertyGroup />
  51. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  52. <ClCompile>
  53. <PrecompiledHeader>
  54. </PrecompiledHeader>
  55. <WarningLevel>Level3</WarningLevel>
  56. <Optimization>Disabled</Optimization>
  57. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  58. </ClCompile>
  59. <Link>
  60. <SubSystem>Windows</SubSystem>
  61. <GenerateDebugInformation>true</GenerateDebugInformation>
  62. </Link>
  63. </ItemDefinitionGroup>
  64. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  65. <ClCompile>
  66. <WarningLevel>Level3</WarningLevel>
  67. <PrecompiledHeader>
  68. </PrecompiledHeader>
  69. <Optimization>MaxSpeed</Optimization>
  70. <FunctionLevelLinking>true</FunctionLevelLinking>
  71. <IntrinsicFunctions>true</IntrinsicFunctions>
  72. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  73. </ClCompile>
  74. <Link>
  75. <SubSystem>Windows</SubSystem>
  76. <GenerateDebugInformation>true</GenerateDebugInformation>
  77. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  78. <OptimizeReferences>true</OptimizeReferences>
  79. </Link>
  80. </ItemDefinitionGroup>
  81. <ItemGroup>
  82. <None Include="ReadMe.txt" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <ClCompile Include="CppSQLite3.cpp" />
  86. <ClCompile Include="sqlite3.c" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <ClInclude Include="CppSQLite3.h" />
  90. <ClInclude Include="sqlite3.h" />
  91. <ClInclude Include="sqlite3ext.h" />
  92. </ItemGroup>
  93. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  94. <ImportGroup Label="ExtensionTargets">
  95. </ImportGroup>
  96. </Project>