Release.props 1.56 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 4 5 6

  <ImportGroup Label="PropertySheets">
    <Import Project="Common.props" />
  </ImportGroup>
7
  
8
  <PropertyGroup>
9 10
    <_PropertySheetDisplayName>Release Settings</_PropertySheetDisplayName>
    <DebugOrRelease>Release</DebugOrRelease>
11
    <LinkIncremental>false</LinkIncremental>
12
  </PropertyGroup>
13
  
14 15
  <ItemDefinitionGroup>
    <ClCompile>
16 17 18 19 20 21
      <AdditionalOptions>/Oy- %(AdditionalOptions)</AdditionalOptions>
      <!--<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>-->
      <FunctionLevelLinking>true</FunctionLevelLinking>
      <IntrinsicFunctions>true</IntrinsicFunctions>
      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
      <MinimalRebuild>false</MinimalRebuild>
22 23 24 25 26 27 28 29
      <Optimization>MaxSpeed</Optimization>
      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <ResourceCompile>
      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ResourceCompile>
    <Link>
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
30 31
      <!--<GenerateDebugInformation>true</GenerateDebugInformation>-->
      <OptimizeReferences>true</OptimizeReferences>
32
    </Link> 
33
  </ItemDefinitionGroup>
34

35
  <ItemDefinitionGroup Condition="'$(Processor)' == 'x86'">
36 37 38 39 40
    <ClCompile>
      <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
    </ClCompile>
  </ItemDefinitionGroup>

41
</Project>