2014-10-19 19:46:35 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-07-21 23:10:14 +00:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2014-10-19 19:46:35 +00:00
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{8BC303AB-25BE-4276-8E57-73F171B2D672}</ProjectGuid>
|
|
|
|
|
<Keyword>MakeFileProj</Keyword>
|
|
|
|
|
</PropertyGroup>
|
2019-07-24 16:01:55 +00:00
|
|
|
|
<Import Project="..\common_default.props" />
|
2014-10-19 19:46:35 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2019-07-24 16:01:55 +00:00
|
|
|
|
<Import Project="..\common_default_macros.props" />
|
2014-10-19 19:46:35 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Makefile</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Makefile</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2020-08-14 04:33:06 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
|
|
|
</PropertyGroup>
|
2014-10-19 19:46:35 +00:00
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
</ImportGroup>
|
2020-03-25 14:31:23 +00:00
|
|
|
|
<PropertyGroup Label="UserMacros">
|
|
|
|
|
<CmakeGenerator>"Visual Studio $(VisualStudioVersion.Substring(0,2))"</CmakeGenerator>
|
2020-11-02 03:07:58 +00:00
|
|
|
|
<CmakeCLI>cmake -G $(CmakeGenerator) -A x64 -Thost=x64 -DCMAKE_CONFIGURATION_TYPES="Debug;Release" -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_BUILD_RUNTIME=OFF -DLLVM_BUILD_TOOLS=OFF -DLLVM_INCLUDE_DOCS=OFF -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_TOOLS=OFF -DLLVM_INCLUDE_UTILS=OFF -DCMAKE_SYSTEM_VERSION=6.1 -DLLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN=ON -DCMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION=$(WindowsTargetPlatformVersion) -DLLVM_USE_CRT_DEBUG=MTd -DLLVM_USE_CRT_RELEASE=MT ../llvm</CmakeCLI>
|
2019-07-23 16:06:29 +00:00
|
|
|
|
</PropertyGroup>
|
2014-10-19 19:46:35 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<NMakePreprocessorDefinitions>
|
|
|
|
|
</NMakePreprocessorDefinitions>
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeBuildCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:build /p:Configuration=Debug /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeBuildCommandLine>
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeReBuildCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:rebuild /p:Configuration=Debug /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeReBuildCommandLine>
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeCleanCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:clean /p:Configuration=Debug /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeCleanCommandLine>
|
2014-10-19 19:46:35 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<NMakePreprocessorDefinitions />
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeBuildCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:build /p:Configuration=Release /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeBuildCommandLine>
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeReBuildCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:rebuild /p:Configuration=Release /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeReBuildCommandLine>
|
2020-05-23 13:53:49 +00:00
|
|
|
|
<NMakeCleanCommandLine>$(CmakeCLI)
|
2020-03-25 14:31:23 +00:00
|
|
|
|
msbuild.exe ALL_BUILD.vcxproj /t:clean /p:Configuration=Release /p:ForceImportBeforeCppTargets=$(SolutionDir)common_default.props /m
|
2015-11-15 23:27:19 +00:00
|
|
|
|
</NMakeCleanCommandLine>
|
2014-10-19 19:46:35 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
</Project>
|