Static run-time library use forced now

This commit is contained in:
Simon Rozman 2016-03-12 08:18:17 +01:00
parent 395303e22c
commit db8f5f127c

View File

@ -1,20 +1,48 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!--
<ImportGroup Label="PropertySheets" /> Copyright 1991-2016 Amebis
<PropertyGroup Label="UserMacros" />
<PropertyGroup> This file is part of MSICA.
<OutDir>temp\$(ProjectName).$(Platform).$(Configuration)\</OutDir>
<IntDir>temp\$(ProjectName).$(Platform).$(Configuration)\</IntDir> MSICA is free software: you can redistribute it and/or modify
</PropertyGroup> it under the terms of the GNU General Public License as published by
<ItemDefinitionGroup> the Free Software Foundation, either version 3 of the License, or
<ClCompile> (at your option) any later version.
<AdditionalIncludeDirectories>..\include;..\..\atlex\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader> MSICA is distributed in the hope that it will be useful,
<PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile> but WITHOUT ANY WARRANTY; without even the implied warranty of
</ClCompile> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
<Lib> GNU General Public License for more details.
<LinkTimeCodeGeneration>false</LinkTimeCodeGeneration>
</Lib> You should have received a copy of the GNU General Public License
</ItemDefinitionGroup> along with MSICA. If not, see <http://www.gnu.org/licenses/>.
<ItemGroup /> -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<OutDir>temp\$(ProjectName).$(Platform).$(Configuration)\</OutDir>
<IntDir>temp\$(ProjectName).$(Platform).$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
<ClCompile>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>..\include;..\..\atlex\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile>
</ClCompile>
<Lib>
<LinkTimeCodeGeneration>false</LinkTimeCodeGeneration>
</Lib>
</ItemDefinitionGroup>
<ItemGroup />
</Project> </Project>