mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
- Add ARM64 configurations to all project files (vcxproj) - Add build scripts (Build_ARM64.cmd, Build_x64.cmd, etc.) - Add ARM64 fix scripts for OutDir, CrossCompile, and CETCompat issues - Update Notepad3.sln with ARM64 platform configurations
27 lines
998 B
XML
27 lines
998 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
AVX2 Optimization Property Sheet
|
|
|
|
Usage:
|
|
1. In Visual Studio, right-click your project → Add → Existing Item → select this file
|
|
2. Or: View → Property Manager → right-click configuration → Add Existing Property Sheet
|
|
|
|
This enables AVX2 instructions for optimized builds on modern CPUs (Intel Haswell 2013+, AMD Excavator 2015+)
|
|
-->
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ImportGroup Label="PropertySheets" />
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<!-- Enable AVX2 instruction set -->
|
|
<EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
|
|
|
|
<!-- Add preprocessor define so code can detect AVX2 build -->
|
|
<PreprocessorDefinitions>NP3_AVX2_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup />
|
|
</Project>
|