forked from OGSR/OGSR-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OgsrBuildProps.props
36 lines (27 loc) · 1.35 KB
/
OgsrBuildProps.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
<PlatformToolset>v143</PlatformToolset>
<!--CopyCppRuntimeToOutputDir>true</CopyCppRuntimeToOutputDir-->
</PropertyGroup>
<PropertyGroup Label="Globals">
<LatestTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</LatestTargetPlatformVersion>
<WindowsTargetPlatformVersion Condition="'$(LatestTargetPlatformVersion)'!=''">$(LatestTargetPlatformVersion)</WindowsTargetPlatformVersion>
</PropertyGroup>
<!--PropertyGroup Condition="$(Configuration.Contains('Debug'))" Label="Configuration">
<EnableASAN>true</EnableASAN>
</PropertyGroup-->
<ItemDefinitionGroup>
<ClCompile>
<EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
<LanguageStandard>stdcpp20</LanguageStandard>
<BuildStlModules>false</BuildStlModules>
<ConformanceMode>true</ConformanceMode>
<AdditionalOptions>/Zc:__cplusplus %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<LargeAddressAware>true</LargeAddressAware>
</Link>
</ItemDefinitionGroup>
</Project>