Browse Source

Default to x64 platform over x86 for the CLI.

pull/1865/head
Joao Matos 10 months ago
parent
commit
42d2b8aa69
  1. 2
      src/CLI/Options.cs

2
src/CLI/Options.cs

@ -37,7 +37,7 @@ namespace CppSharp @@ -37,7 +37,7 @@ namespace CppSharp
public TargetPlatform? Platform { get; set; }
public TargetArchitecture Architecture { get; set; } = TargetArchitecture.x86;
public TargetArchitecture Architecture { get; set; } = TargetArchitecture.x64;
public GeneratorKind Kind { get; set; } = GeneratorKind.CSharp;

Loading…
Cancel
Save