122 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			122 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | |
|   <ItemGroup Label="ProjectConfigurations">
 | |
|     <ProjectConfiguration Include="Debug|ARM">
 | |
|       <Configuration>Debug</Configuration>
 | |
|       <Platform>ARM</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Debug|ARM64">
 | |
|       <Configuration>Debug</Configuration>
 | |
|       <Platform>ARM64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Debug|Win32">
 | |
|       <Configuration>Debug</Configuration>
 | |
|       <Platform>Win32</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Debug|x64">
 | |
|       <Configuration>Debug</Configuration>
 | |
|       <Platform>x64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGInstrument|ARM">
 | |
|       <Configuration>PGInstrument</Configuration>
 | |
|       <Platform>ARM</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGInstrument|ARM64">
 | |
|       <Configuration>PGInstrument</Configuration>
 | |
|       <Platform>ARM64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGInstrument|Win32">
 | |
|       <Configuration>PGInstrument</Configuration>
 | |
|       <Platform>Win32</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGInstrument|x64">
 | |
|       <Configuration>PGInstrument</Configuration>
 | |
|       <Platform>x64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGUpdate|ARM">
 | |
|       <Configuration>PGUpdate</Configuration>
 | |
|       <Platform>ARM</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGUpdate|ARM64">
 | |
|       <Configuration>PGUpdate</Configuration>
 | |
|       <Platform>ARM64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGUpdate|Win32">
 | |
|       <Configuration>PGUpdate</Configuration>
 | |
|       <Platform>Win32</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="PGUpdate|x64">
 | |
|       <Configuration>PGUpdate</Configuration>
 | |
|       <Platform>x64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Release|ARM">
 | |
|       <Configuration>Release</Configuration>
 | |
|       <Platform>ARM</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Release|ARM64">
 | |
|       <Configuration>Release</Configuration>
 | |
|       <Platform>ARM64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Release|Win32">
 | |
|       <Configuration>Release</Configuration>
 | |
|       <Platform>Win32</Platform>
 | |
|     </ProjectConfiguration>
 | |
|     <ProjectConfiguration Include="Release|x64">
 | |
|       <Configuration>Release</Configuration>
 | |
|       <Platform>x64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|   </ItemGroup>
 | |
|   <PropertyGroup Label="Globals">
 | |
|     <ProjectGuid>{A1A295E5-463C-437F-81CA-1F32367685DA}</ProjectGuid>
 | |
|     <RootNamespace>sqlite3</RootNamespace>
 | |
|     <TargetExt>.pyd</TargetExt>
 | |
|     <SupportPGO>false</SupportPGO>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="python.props" />
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | |
|   <PropertyGroup Label="Configuration">
 | |
|     <ConfigurationType>DynamicLibrary</ConfigurationType>
 | |
|     <CharacterSet>NotSet</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | |
|   <ImportGroup Label="ExtensionSettings">
 | |
|   </ImportGroup>
 | |
|   <ImportGroup Label="PropertySheets">
 | |
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | |
|     <Import Project="pyproject.props" />
 | |
|   </ImportGroup>
 | |
|   <PropertyGroup Label="UserMacros" />
 | |
|   <PropertyGroup>
 | |
|     <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
 | |
|     <_SqliteVersion>$([System.Text.RegularExpressions.Regex]::Match(`$(sqlite3Dir)`, `((\d+)\.(\d+)\.(\d+)\.(\d+))\\?$`).Groups)</_SqliteVersion>
 | |
|     <SqliteVersion>$(_SqliteVersion.Split(`;`)[1])</SqliteVersion>
 | |
|     <SqliteMajorVersion>$(_SqliteVersion.Split(`;`)[2])</SqliteMajorVersion>
 | |
|     <SqliteMinorVersion>$(_SqliteVersion.Split(`;`)[3])</SqliteMinorVersion>
 | |
|     <SqliteMicroVersion>$(_SqliteVersion.Split(`;`)[4])</SqliteMicroVersion>
 | |
|     <SqlitePatchVersion>$(_SqliteVersion.Split(`;`)[5])</SqlitePatchVersion>
 | |
|   </PropertyGroup>
 | |
|   <ItemDefinitionGroup>
 | |
|     <ClCompile>
 | |
|       <AdditionalIncludeDirectories>$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | |
|       <PreprocessorDefinitions>SQLITE_ENABLE_MATH_FUNCTIONS;SQLITE_ENABLE_JSON1;SQLITE_ENABLE_FTS4;SQLITE_ENABLE_FTS5;SQLITE_ENABLE_RTREE;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | |
|       <WarningLevel>Level1</WarningLevel>
 | |
|     </ClCompile>
 | |
|     <ResourceCompile>
 | |
|       <PreprocessorDefinitions>SQLITE_VERSION=$(SqliteVersion);SQLITE_MAJOR_VERSION=$(SqliteMajorVersion);SQLITE_MINOR_VERSION=$(SqliteMinorVersion);SQLITE_MICRO_VERSION=$(SqliteMicroVersion);SQLITE_PATCH_VERSION=$(SqlitePatchVersion);%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | |
|     </ResourceCompile>
 | |
|   </ItemDefinitionGroup>
 | |
|   <ItemGroup>
 | |
|     <ClInclude Include="$(sqlite3Dir)\sqlite3.h" />
 | |
|     <ClInclude Include="$(sqlite3Dir)\sqlite3ext.h" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <ClCompile Include="$(sqlite3Dir)\sqlite3.c" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <ResourceCompile Include="..\PC\sqlite3.rc" />
 | |
|   </ItemGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | |
|   <ImportGroup Label="ExtensionTargets">
 | |
|   </ImportGroup>
 | |
| </Project>
 |