OSDN Git Service

Windows APIを実装部に隠蔽してみた。まだ不完全だが。
[wintimer/wintimer.git] / wintimer / wintimer.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|x64">
5       <Configuration>Debug</Configuration>
6       <Platform>x64</Platform>
7     </ProjectConfiguration>
8     <ProjectConfiguration Include="Release|x64">
9       <Configuration>Release</Configuration>
10       <Platform>x64</Platform>
11     </ProjectConfiguration>
12   </ItemGroup>
13   <PropertyGroup Label="Globals">
14     <ProjectGuid>{454B96E9-B255-4909-A167-7DFA3E4873A5}</ProjectGuid>
15     <RootNamespace>wintimer</RootNamespace>
16   </PropertyGroup>
17   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
19     <ConfigurationType>Application</ConfigurationType>
20     <UseDebugLibraries>true</UseDebugLibraries>
21     <CharacterSet>Unicode</CharacterSet>
22     <PlatformToolset>Windows7.1SDK</PlatformToolset>
23   </PropertyGroup>
24   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
25     <ConfigurationType>Application</ConfigurationType>
26     <UseDebugLibraries>false</UseDebugLibraries>
27     <WholeProgramOptimization>true</WholeProgramOptimization>
28     <CharacterSet>Unicode</CharacterSet>
29     <PlatformToolset>Windows7.1SDK</PlatformToolset>
30   </PropertyGroup>
31   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
32   <ImportGroup Label="ExtensionSettings">
33   </ImportGroup>
34   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
35     <Import Project="..\SF.props" />
36   </ImportGroup>
37   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
38     <Import Project="..\SF.props" />
39   </ImportGroup>
40   <PropertyGroup Label="UserMacros" />
41   <PropertyGroup />
42   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
43     <ClCompile>
44       <WarningLevel>Level3</WarningLevel>
45       <Optimization>Disabled</Optimization>
46       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
47       <StructMemberAlignment>16Bytes</StructMemberAlignment>
48       <AdditionalOptions>/Zm110 %(AdditionalOptions)</AdditionalOptions>
49     </ClCompile>
50     <Link>
51       <GenerateDebugInformation>true</GenerateDebugInformation>
52     </Link>
53   </ItemDefinitionGroup>
54   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
55     <ClCompile>
56       <WarningLevel>Level3</WarningLevel>
57       <Optimization>MaxSpeed</Optimization>
58       <FunctionLevelLinking>true</FunctionLevelLinking>
59       <IntrinsicFunctions>true</IntrinsicFunctions>
60     </ClCompile>
61     <Link>
62       <GenerateDebugInformation>true</GenerateDebugInformation>
63       <EnableCOMDATFolding>true</EnableCOMDATFolding>
64       <OptimizeReferences>true</OptimizeReferences>
65     </Link>
66   </ItemDefinitionGroup>
67   <ItemGroup>
68     <ClInclude Include="base_window.h" />
69     <ClInclude Include="code_converter.h" />
70     <ClInclude Include="dout.h" />
71     <ClInclude Include="exception.h" />
72     <ClInclude Include="logger.h" />
73     <ClInclude Include="message_loop.h" />
74     <ClInclude Include="sf_com.h" />
75     <ClInclude Include="sf_memory.h" />
76     <ClInclude Include="sf_windows.h" />
77     <ClInclude Include="singleton.h" />
78     <ClInclude Include="stdafx.h" />
79     <ClInclude Include="taskbar.h" />
80     <ClInclude Include="toplevel_window.h" />
81   </ItemGroup>
82   <ItemGroup>
83     <ClCompile Include="base_window.cpp" />
84     <ClCompile Include="code_converter.cpp" />
85     <ClCompile Include="exception.cpp" />
86     <ClCompile Include="logger.cpp" />
87     <ClCompile Include="sf_windows.cpp" />
88     <ClCompile Include="stdafx.cpp">
89       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
90       <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
91     </ClCompile>
92     <ClCompile Include="taskbar.cpp" />
93     <ClCompile Include="toplevel_window.cpp" />
94     <ClCompile Include="winmain.cpp" />
95   </ItemGroup>
96   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
97   <ImportGroup Label="ExtensionTargets">
98   </ImportGroup>
99 </Project>