forked from KolibriOS/kolibrios
73 lines
3.1 KiB
XML
73 lines
3.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<ItemGroup Label="ProjectConfigurations">
|
|||
|
<ProjectConfiguration Include="Release|Win32">
|
|||
|
<Configuration>Release</Configuration>
|
|||
|
<Platform>Win32</Platform>
|
|||
|
</ProjectConfiguration>
|
|||
|
</ItemGroup>
|
|||
|
<PropertyGroup Label="Globals">
|
|||
|
<ProjectGuid>{911D4818-1AA1-4351-9C0A-38749130FAA6}</ProjectGuid>
|
|||
|
<Keyword>Win32Proj</Keyword>
|
|||
|
<RootNamespace>smalllibc</RootNamespace>
|
|||
|
</PropertyGroup>
|
|||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|||
|
<CharacterSet>Unicode</CharacterSet>
|
|||
|
<PlatformToolset>v120</PlatformToolset>
|
|||
|
</PropertyGroup>
|
|||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|||
|
<ImportGroup Label="ExtensionSettings">
|
|||
|
</ImportGroup>
|
|||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|||
|
</ImportGroup>
|
|||
|
<PropertyGroup Label="UserMacros" />
|
|||
|
<PropertyGroup />
|
|||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|||
|
<ClCompile>
|
|||
|
<WarningLevel>Level3</WarningLevel>
|
|||
|
<PrecompiledHeader>
|
|||
|
</PrecompiledHeader>
|
|||
|
<Optimization>MinSpace</Optimization>
|
|||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|||
|
<PreprocessorDefinitions>NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|||
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
|||
|
<OmitFramePointers>true</OmitFramePointers>
|
|||
|
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
|
|||
|
</ClCompile>
|
|||
|
<Link>
|
|||
|
<SubSystem>Windows</SubSystem>
|
|||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|||
|
<OptimizeReferences>true</OptimizeReferences>
|
|||
|
</Link>
|
|||
|
</ItemDefinitionGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ClInclude Include="func.h" />
|
|||
|
<ClInclude Include="kosFile.h" />
|
|||
|
<ClInclude Include="kosSyst.h" />
|
|||
|
<ClInclude Include="mcsmemm.h" />
|
|||
|
<ClInclude Include="mymath.h" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ClCompile Include="func.cpp" />
|
|||
|
<ClCompile Include="kosFile.cpp" />
|
|||
|
<ClCompile Include="kosSyst.cpp" />
|
|||
|
<ClCompile Include="math2.cpp" />
|
|||
|
<ClCompile Include="mcsmemm.cpp" />
|
|||
|
<ClCompile Include="purecall.cpp" />
|
|||
|
<ClCompile Include="sprintf.cpp" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Object Include="init.obj" />
|
|||
|
</ItemGroup>
|
|||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|||
|
<ImportGroup Label="ExtensionTargets">
|
|||
|
</ImportGroup>
|
|||
|
</Project>
|