x64.props 1.0 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <_PropertySheetDisplayName>x64 Settings</_PropertySheetDisplayName>
  5. </PropertyGroup>
  6. <ItemDefinitionGroup>
  7. <ClCompile>
  8. <!-- Note that Win64 defines may cause WIN32 to become defined when using windows headers,
  9. but _WIN32 implies Windows 32 bit or above. If the standard headers are not included
  10. these are sometimes required even for 64 bit builds and should never cause harm there.-->
  11. <PreprocessorDefinitions>WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  12. </ClCompile>
  13. <ResourceCompile>
  14. <PreprocessorDefinitions>x64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  15. </ResourceCompile>
  16. <Link>
  17. <TargetMachine>MachineX64</TargetMachine>
  18. </Link>
  19. <Lib>
  20. <AdditionalOptions>/MACHINE:X64 %(AdditionalOptions)</AdditionalOptions>
  21. </Lib>
  22. </ItemDefinitionGroup>
  23. </Project>