Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions builds/msvc/properties/Messages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<Message Text="ConfigurationType : $(ConfigurationType)" Importance="high"/>
<Message Text="Configuration : $(Configuration)" Importance="high"/>
<Message Text="Processor : $(ProcessorArchitecture)" Importance="high"/>
<Message Text="Architecture : $(Option-arch)" Importance="high"/>
<Message Text="TargetPath : $(TargetPath)" Importance="high"/>
</Target>

Expand Down
17 changes: 13 additions & 4 deletions builds/msvc/properties/Release.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<DebugOrRelease>Release</DebugOrRelease>
<!--<LinkIncremental>false</LinkIncremental>-->
</PropertyGroup>

<!-- Overridable per machine (e.g. Directory.Build.props above repos, or environment). -->
<PropertyGroup>
<Option-arch Condition="'$(Option-arch)' == ''">AdvancedVectorExtensions2</Option-arch>
</PropertyGroup>

<!-- DebugInformationFormat and GenerateDebugInformation were formerly disabled. -->
<!-- This is why we were not getting symbols in release builds (update nuget). -->
Expand All @@ -29,10 +34,14 @@
<OmitFramePointers>true</OmitFramePointers>
<Optimization>MaxSpeed</Optimization>

<!-- SSE4/AVX2 (also AVX512) -->
<!--TODO: these should be integrated with the HAVE build options.-->
<!--<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>-->
<EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
<!-- Literal (not macro) values retain property page presentation text. -->
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'NotSet'">NotSet</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'NoExtensions'">NoExtensions</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'StreamingSIMDExtensions'">StreamingSIMDExtensions</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'StreamingSIMDExtensions2'">StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'AdvancedVectorExtensions'">AdvancedVectorExtensions</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'AdvancedVectorExtensions2'">AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet Condition="'$(Option-arch)' == 'AdvancedVectorExtensions512'">AdvancedVectorExtensions512</EnableEnhancedInstructionSet>

<!-- Other. -->
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
Expand Down
4 changes: 2 additions & 2 deletions builds/msvc/vs2022/libbitcoin-network.import.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<!-- Options -->

<PropertyGroup>
<Option-ssl>true</Option-ssl>
<Option-ssl Condition="'$(Option-ssl)' == ''">true</Option-ssl>
</PropertyGroup>

<!-- Messages -->

<Target Name="OptionInfo" BeforeTargets="PrepareForBuild">
<Target Name="NetworkOptionInfo" BeforeTargets="PrepareForBuild">
<Message Text="Option-ssl : $(Option-ssl)" Importance="high"/>
</Target>

Expand Down
4 changes: 2 additions & 2 deletions builds/msvc/vs2022/libbitcoin-system.import.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!--<Option-512>false</Option-512>-->
<!--<Option-256>true</Option-256>-->
<!--<Option-128>true</Option-128>-->
<Option-sha>false</Option-sha>
<Option-sha Condition="'$(Option-sha)' == ''">false</Option-sha>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
Expand All @@ -34,7 +34,7 @@

<!-- Messages -->

<Target Name="OptionInfo" BeforeTargets="PrepareForBuild">
<Target Name="SystemOptionInfo" BeforeTargets="PrepareForBuild">
<Message Text="Option-sha : $(Option-sha)" Importance="high"/>
<!--<Message Text="Option-512 : $(Option-512)" Importance="high"/>-->
<!--<Message Text="Option-256 : $(Option-256)" Importance="high"/>-->
Expand Down
4 changes: 2 additions & 2 deletions builds/msvc/vs2026/libbitcoin-network.import.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<!-- Options -->

<PropertyGroup>
<Option-ssl>true</Option-ssl>
<Option-ssl Condition="'$(Option-ssl)' == ''">true</Option-ssl>
</PropertyGroup>

<!-- Messages -->

<Target Name="OptionInfo" BeforeTargets="PrepareForBuild">
<Target Name="NetworkOptionInfo" BeforeTargets="PrepareForBuild">
<Message Text="Option-ssl : $(Option-ssl)" Importance="high"/>
</Target>

Expand Down
4 changes: 2 additions & 2 deletions builds/msvc/vs2026/libbitcoin-system.import.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!--<Option-512>false</Option-512>-->
<!--<Option-256>true</Option-256>-->
<!--<Option-128>true</Option-128>-->
<Option-sha>false</Option-sha>
<Option-sha Condition="'$(Option-sha)' == ''">false</Option-sha>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
Expand All @@ -34,7 +34,7 @@

<!-- Messages -->

<Target Name="OptionInfo" BeforeTargets="PrepareForBuild">
<Target Name="SystemOptionInfo" BeforeTargets="PrepareForBuild">
<Message Text="Option-sha : $(Option-sha)" Importance="high"/>
<!--<Message Text="Option-512 : $(Option-512)" Importance="high"/>-->
<!--<Message Text="Option-256 : $(Option-256)" Importance="high"/>-->
Expand Down
Loading