-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathOgsrBuildProps.props
More file actions
41 lines (32 loc) · 1.81 KB
/
OgsrBuildProps.props
File metadata and controls
41 lines (32 loc) · 1.81 KB
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
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
<!-- Если сборка ведётся из VS2026 (VisualStudioVersion == 18.0) — используем v145 -->
<PlatformToolset Condition="'$(VisualStudioVersion)' == '18.0'">v145</PlatformToolset>
<!-- Иначе — используем v143 -->
<PlatformToolset Condition="'$(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 /Ob3 %(AdditionalOptions)</AdditionalOptions>
<PreprocessorDefinitions>_ITERATOR_DEBUG_LEVEL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BufferSecurityCheck>true</BufferSecurityCheck>
</ClCompile>
<Link>
<LargeAddressAware>true</LargeAddressAware>
</Link>
</ItemDefinitionGroup>
</Project>