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>
22 <ClCompile Include="cli.c" />
25 <ClInclude Include="cli.h" />
27 <PropertyGroup Label="Globals">
28 <ProjectGuid>{DF39D172-117D-4AAC-9415-01E55DCA6D9E}</ProjectGuid>
29 <Keyword>Win32Proj</Keyword>
30 <RootNamespace>cli</RootNamespace>
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>
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>
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>
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>
59 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
60 <ImportGroup Label="ExtensionSettings">
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" />
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" />
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" />
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" />
74 <PropertyGroup Label="UserMacros" />
75 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
76 <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
78 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'">
79 <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82 <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
84 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'">
85 <IntDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</IntDir>
87 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
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>
99 <SubSystem>Windows</SubSystem>
100 <GenerateDebugInformation>true</GenerateDebugInformation>
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 > "$(SolutionDir)config.h"
106 echo #define LSMASH_REV "%REV%" >> "$(SolutionDir)config.h"
107 echo #define LSMASH_GIT_HASH "%HASH%" >> "$(SolutionDir)config.h"</Command>
109 </ItemDefinitionGroup>
110 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CLIDebug|Win32'">
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>
122 <SubSystem>Windows</SubSystem>
123 <GenerateDebugInformation>true</GenerateDebugInformation>
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 > "$(SolutionDir)config.h"
129 echo #define LSMASH_REV "%REV%" >> "$(SolutionDir)config.h"
130 echo #define LSMASH_GIT_HASH "%HASH%" >> "$(SolutionDir)config.h"
131 echo #define LSMASH_API_IMPORTS >> "$(SolutionDir)config.h"</Command>
133 </ItemDefinitionGroup>
134 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
136 <WarningLevel>Level3</WarningLevel>
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>
149 <SubSystem>Windows</SubSystem>
150 <GenerateDebugInformation>true</GenerateDebugInformation>
151 <EnableCOMDATFolding>true</EnableCOMDATFolding>
152 <OptimizeReferences>true</OptimizeReferences>
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 > "$(SolutionDir)config.h"
158 echo #define LSMASH_REV "%REV%" >> "$(SolutionDir)config.h"
159 echo #define LSMASH_GIT_HASH "%HASH%" >> "$(SolutionDir)config.h"</Command>
161 </ItemDefinitionGroup>
162 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CLIRelease|Win32'">
164 <WarningLevel>Level3</WarningLevel>
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>
177 <SubSystem>Windows</SubSystem>
178 <GenerateDebugInformation>true</GenerateDebugInformation>
179 <EnableCOMDATFolding>true</EnableCOMDATFolding>
180 <OptimizeReferences>true</OptimizeReferences>
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 > "$(SolutionDir)config.h"
186 echo #define LSMASH_REV "%REV%" >> "$(SolutionDir)config.h"
187 echo #define LSMASH_GIT_HASH "%HASH%" >> "$(SolutionDir)config.h"
188 echo #define LSMASH_API_IMPORTS >> "$(SolutionDir)config.h"</Command>
190 </ItemDefinitionGroup>
191 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
192 <ImportGroup Label="ExtensionTargets">