Mercurial > hg > CbC > CbC_llvm
view tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets @ 129:9ec641e857f8
Fix compile error to update llvm 5.0
author | mir3636 |
---|---|
date | Tue, 12 Dec 2017 19:42:58 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Force TargetFrameworkVersion to v4.0 to support XP--> <PropertyGroup> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <BeforeClCompileTargets>NoSupportCodeAnalysisXP;$(BeforeClCompileTargets)</BeforeClCompileTargets> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.CppCommon.targets" /> <Target Name="NoSupportCodeAnalysisXP" Condition="'$(ErrorNoSupportCodeAnalysisXP)' != 'false'"> <VCMessage Condition="'$(DesignTimeBuild)' != 'true' and '@(ClCompile->AnyHaveMetadataValue('EnablePREfast', 'true'))'=='true'" Code="MSB8026" Type="Error"/> </Target> <PropertyGroup> <PrepareForBuildDependsOn>CheckWindowsSDK71A;$(PrepareForBuildDependsOn)</PrepareForBuildDependsOn> </PropertyGroup> <Target Name="CheckWindowsSDK71A"> <VCMessage Code="MSB8003" Type="Warning" Arguments="WindowsSdkDir_71A" Condition="'$(WindowsSdkDir_71A)'=='' and '$(UseEnv)' != 'true'" /> </Target> </Project>