print: Fix misleading indentations.
[L-SMASH.git] / cli / cli.vcxproj
blob787f9c47884b57319c0311c69fab2e0629eb4900
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="CLIDebug|Win32">
5       <Configuration>CLIDebug</Configuration>
6       <Platform>Win32</Platform>
7     </ProjectConfiguration>
8     <ProjectConfiguration Include="CLIRelease|Win32">
9       <Configuration>CLIRelease</Configuration>
10       <Platform>Win32</Platform>
11     </ProjectConfiguration>
12     <ProjectConfiguration Include="Debug|Win32">
13       <Configuration>Debug</Configuration>
14       <Platform>Win32</Platform>
15     </ProjectConfiguration>
16     <ProjectConfiguration Include="Release|Win32">
17       <Configuration>Release</Configuration>
18       <Platform>Win32</Platform>
19     </ProjectConfiguration>
20   </ItemGroup>
21   <ItemGroup>
22     <ClCompile Include="cli.c" />
23   </ItemGroup>
24   <ItemGroup>
25     <ClInclude Include="cli.h" />
26   </ItemGroup>
27   <PropertyGroup Label="Globals">
28     <ProjectGuid>{DF39D172-117D-4AAC-9415-01E55DCA6D9E}</ProjectGuid>
29     <Keyword>Win32Proj</Keyword>
30     <RootNamespace>cli</RootNamespace>
31   </PropertyGroup>
32   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
34     <ConfigurationType>StaticLibrary</ConfigurationType>
35     <UseDebugLibraries>true</UseDebugLibraries>
36     <PlatformToolset>v120_xp</PlatformToolset>
37     <CharacterSet>MultiByte</CharacterSet>
38   </PropertyGroup>
39   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'" Label="Configuration">
40     <ConfigurationType>StaticLibrary</ConfigurationType>
41     <UseDebugLibraries>true</UseDebugLibraries>
42     <PlatformToolset>v120_xp</PlatformToolset>
43     <CharacterSet>MultiByte</CharacterSet>
44   </PropertyGroup>
45   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
46     <ConfigurationType>StaticLibrary</ConfigurationType>
47     <UseDebugLibraries>false</UseDebugLibraries>
48     <PlatformToolset>v120_xp</PlatformToolset>
49     <WholeProgramOptimization>true</WholeProgramOptimization>
50     <CharacterSet>MultiByte</CharacterSet>
51   </PropertyGroup>
52   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'" Label="Configuration">
53     <ConfigurationType>StaticLibrary</ConfigurationType>
54     <UseDebugLibraries>false</UseDebugLibraries>
55     <PlatformToolset>v120_xp</PlatformToolset>
56     <WholeProgramOptimization>true</WholeProgramOptimization>
57     <CharacterSet>MultiByte</CharacterSet>
58   </PropertyGroup>
59   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
60   <ImportGroup Label="ExtensionSettings">
61   </ImportGroup>
62   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
63     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64   </ImportGroup>
65   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'" Label="PropertySheets">
66     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
67   </ImportGroup>
68   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
69     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
70   </ImportGroup>
71   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'" Label="PropertySheets">
72     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
73   </ImportGroup>
74   <PropertyGroup Label="UserMacros" />
75   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
76     <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
77   </PropertyGroup>
78   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'">
79     <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
80   </PropertyGroup>
81   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82     <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
83   </PropertyGroup>
84   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'">
85     <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
86   </PropertyGroup>
87   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
88     <ClCompile>
89       <PrecompiledHeader>
90       </PrecompiledHeader>
91       <WarningLevel>Level3</WarningLevel>
92       <Optimization>Disabled</Optimization>
93       <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
94       <AdditionalIncludeDirectories>$(SolutionDir)</AdditionalIncludeDirectories>
95       <SDLCheck>true</SDLCheck>
96       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
97     </ClCompile>
98     <Link>
99       <SubSystem>Windows</SubSystem>
100       <GenerateDebugInformation>true</GenerateDebugInformation>
101     </Link>
102     <PreBuildEvent>
103       <Command>for /f usebackq %%a in (`git rev-list HEAD ^| find /c /v ""`) do set REV=%%a
104 for /f usebackq %%a in (`git describe --always`) do set HASH=%%a
105 type nul &gt; "$(SolutionDir)config.h"
106 echo #define LSMASH_REV "%REV%" &gt;&gt; "$(SolutionDir)config.h"
107 echo #define LSMASH_GIT_HASH "%HASH%" &gt;&gt; "$(SolutionDir)config.h"</Command>
108     </PreBuildEvent>
109   </ItemDefinitionGroup>
110   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'">
111     <ClCompile>
112       <PrecompiledHeader>
113       </PrecompiledHeader>
114       <WarningLevel>Level3</WarningLevel>
115       <Optimization>Disabled</Optimization>
116       <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
117       <AdditionalIncludeDirectories>$(SolutionDir)</AdditionalIncludeDirectories>
118       <SDLCheck>true</SDLCheck>
119       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
120     </ClCompile>
121     <Link>
122       <SubSystem>Windows</SubSystem>
123       <GenerateDebugInformation>true</GenerateDebugInformation>
124     </Link>
125     <PreBuildEvent>
126       <Command>for /f usebackq %%a in (`git rev-list HEAD ^| find /c /v ""`) do set REV=%%a
127 for /f usebackq %%a in (`git describe --always`) do set HASH=%%a
128 type nul &gt; "$(SolutionDir)config.h"
129 echo #define LSMASH_REV "%REV%" &gt;&gt; "$(SolutionDir)config.h"
130 echo #define LSMASH_GIT_HASH "%HASH%" &gt;&gt; "$(SolutionDir)config.h"
131 echo #define LSMASH_API_IMPORTS &gt;&gt; "$(SolutionDir)config.h"</Command>
132     </PreBuildEvent>
133   </ItemDefinitionGroup>
134   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
135     <ClCompile>
136       <WarningLevel>Level3</WarningLevel>
137       <PrecompiledHeader>
138       </PrecompiledHeader>
139       <Optimization>MaxSpeed</Optimization>
140       <FunctionLevelLinking>true</FunctionLevelLinking>
141       <IntrinsicFunctions>true</IntrinsicFunctions>
142       <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
143       <AdditionalIncludeDirectories>$(SolutionDir)</AdditionalIncludeDirectories>
144       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
145       <SDLCheck>true</SDLCheck>
146       <MultiProcessorCompilation>true</MultiProcessorCompilation>
147     </ClCompile>
148     <Link>
149       <SubSystem>Windows</SubSystem>
150       <GenerateDebugInformation>true</GenerateDebugInformation>
151       <EnableCOMDATFolding>true</EnableCOMDATFolding>
152       <OptimizeReferences>true</OptimizeReferences>
153     </Link>
154     <PreBuildEvent>
155       <Command>for /f usebackq %%a in (`git rev-list HEAD ^| find /c /v ""`) do set REV=%%a
156 for /f usebackq %%a in (`git describe --always`) do set HASH=%%a
157 type nul &gt; "$(SolutionDir)config.h"
158 echo #define LSMASH_REV "%REV%" &gt;&gt; "$(SolutionDir)config.h"
159 echo #define LSMASH_GIT_HASH "%HASH%" &gt;&gt; "$(SolutionDir)config.h"</Command>
160     </PreBuildEvent>
161   </ItemDefinitionGroup>
162   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'">
163     <ClCompile>
164       <WarningLevel>Level3</WarningLevel>
165       <PrecompiledHeader>
166       </PrecompiledHeader>
167       <Optimization>MaxSpeed</Optimization>
168       <FunctionLevelLinking>true</FunctionLevelLinking>
169       <IntrinsicFunctions>true</IntrinsicFunctions>
170       <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
171       <AdditionalIncludeDirectories>$(SolutionDir)</AdditionalIncludeDirectories>
172       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
173       <SDLCheck>true</SDLCheck>
174       <MultiProcessorCompilation>true</MultiProcessorCompilation>
175     </ClCompile>
176     <Link>
177       <SubSystem>Windows</SubSystem>
178       <GenerateDebugInformation>true</GenerateDebugInformation>
179       <EnableCOMDATFolding>true</EnableCOMDATFolding>
180       <OptimizeReferences>true</OptimizeReferences>
181     </Link>
182     <PreBuildEvent>
183       <Command>for /f usebackq %%a in (`git rev-list HEAD ^| find /c /v ""`) do set REV=%%a
184 for /f usebackq %%a in (`git describe --always`) do set HASH=%%a
185 type nul &gt; "$(SolutionDir)config.h"
186 echo #define LSMASH_REV "%REV%" &gt;&gt; "$(SolutionDir)config.h"
187 echo #define LSMASH_GIT_HASH "%HASH%" &gt;&gt; "$(SolutionDir)config.h"
188 echo #define LSMASH_API_IMPORTS &gt;&gt; "$(SolutionDir)config.h"</Command>
189     </PreBuildEvent>
190   </ItemDefinitionGroup>
191   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
192   <ImportGroup Label="ExtensionTargets">
193   </ImportGroup>
194 </Project>