OSDN Git Service

ファイル作成関数作成中
[nlite/nlite.git] / sqlite3 / sqlite3.vcxproj
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   <ItemGroup Label="ProjectConfigurations">
4     <ProjectConfiguration Include="Debug-window|Win32">
5       <Configuration>Debug-window</Configuration>
6       <Platform>Win32</Platform>
7     </ProjectConfiguration>
8     <ProjectConfiguration Include="Debug|Win32">
9       <Configuration>Debug</Configuration>
10       <Platform>Win32</Platform>
11     </ProjectConfiguration>
12     <ProjectConfiguration Include="Release|Win32">
13       <Configuration>Release</Configuration>
14       <Platform>Win32</Platform>
15     </ProjectConfiguration>
16   </ItemGroup>
17   <PropertyGroup Label="Globals">
18     <ProjectGuid>{3D8CAFF3-A27F-4FEB-909F-E8BFDEE66BE1}</ProjectGuid>
19     <Keyword>Win32Proj</Keyword>
20     <RootNamespace>sqlite3</RootNamespace>
21   </PropertyGroup>
22   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
23   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24     <ConfigurationType>StaticLibrary</ConfigurationType>
25     <UseDebugLibraries>true</UseDebugLibraries>
26     <CharacterSet>Unicode</CharacterSet>
27   </PropertyGroup>
28   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-window|Win32'" Label="Configuration">
29     <ConfigurationType>StaticLibrary</ConfigurationType>
30     <UseDebugLibraries>true</UseDebugLibraries>
31     <CharacterSet>Unicode</CharacterSet>
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   </PropertyGroup>
39   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
40   <ImportGroup Label="ExtensionSettings">
41   </ImportGroup>
42   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
44   </ImportGroup>
45   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-window|Win32'" Label="PropertySheets">
46     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
47   </ImportGroup>
48   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
49     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
50   </ImportGroup>
51   <PropertyGroup Label="UserMacros" />
52   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
53     <IncludePath>$(SolutionDir)\Include;$(IncludePath)</IncludePath>
54   </PropertyGroup>
55   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-window|Win32'">
56     <IncludePath>$(IncludePath)</IncludePath>
57   </PropertyGroup>
58   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
59     <IncludePath>$(SolutionDir)include;$(IncludePath)</IncludePath>
60   </PropertyGroup>
61   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
62     <ClCompile>
63       <PrecompiledHeader>
64       </PrecompiledHeader>
65       <WarningLevel>Level3</WarningLevel>
66       <Optimization>Disabled</Optimization>
67       <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions);SQLITE_LIB_EXPORT;_CRT_SECURE_NO_DEPRECATE;THREADSAFE</PreprocessorDefinitions>
68     </ClCompile>
69     <Link>
70       <SubSystem>Windows</SubSystem>
71       <GenerateDebugInformation>true</GenerateDebugInformation>
72     </Link>
73   </ItemDefinitionGroup>
74   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-window|Win32'">
75     <ClCompile>
76       <PrecompiledHeader>
77       </PrecompiledHeader>
78       <WarningLevel>Level3</WarningLevel>
79       <Optimization>Disabled</Optimization>
80       <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions);SQLITE_LIB_EXPORT;_CRT_SECURE_NO_DEPRECATE;THREADSAFE</PreprocessorDefinitions>
81     </ClCompile>
82     <Link>
83       <SubSystem>Windows</SubSystem>
84       <GenerateDebugInformation>true</GenerateDebugInformation>
85     </Link>
86   </ItemDefinitionGroup>
87   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
88     <ClCompile>
89       <WarningLevel>Level3</WarningLevel>
90       <PrecompiledHeader>
91       </PrecompiledHeader>
92       <Optimization>MaxSpeed</Optimization>
93       <FunctionLevelLinking>true</FunctionLevelLinking>
94       <IntrinsicFunctions>true</IntrinsicFunctions>
95       <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions);SQLITE_LIB_EXPORT;_CRT_SECURE_NO_DEPRECATE;THREADSAFE</PreprocessorDefinitions>
96     </ClCompile>
97     <Link>
98       <SubSystem>Windows</SubSystem>
99       <GenerateDebugInformation>true</GenerateDebugInformation>
100       <EnableCOMDATFolding>true</EnableCOMDATFolding>
101       <OptimizeReferences>true</OptimizeReferences>
102     </Link>
103   </ItemDefinitionGroup>
104   <ItemGroup>
105     <None Include="ReadMe.txt" />
106   </ItemGroup>
107   <ItemGroup>
108     <ClCompile Include="sqlite3.c" />
109     <ClCompile Include="sqliteMangaer.c" />
110   </ItemGroup>
111   <ItemGroup>
112     <ClInclude Include="sqlite3.h" />
113     <ClInclude Include="sqlite3ext.h" />
114     <ClInclude Include="sqliteManager.h" />
115   </ItemGroup>
116   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
117   <ImportGroup Label="ExtensionTargets">
118   </ImportGroup>
119 </Project>