Browse Source

Remove duplicated TargetPlatform type in CLI.

pull/742/head
Joao Matos 9 years ago
parent
commit
9d9aebf2eb
  1. 7
      src/CLI/Options.cs
  2. 1
      src/Core/Platform.cs

7
src/CLI/Options.cs

@ -8,13 +8,6 @@ using CppSharp.Generators;
namespace CppSharp namespace CppSharp
{ {
enum TargetPlatform
{
Windows,
MacOS,
Linux
}
enum TargetArchitecture enum TargetArchitecture
{ {
x86, x86,

1
src/Core/Platform.cs

@ -6,6 +6,7 @@ namespace CppSharp
public enum TargetPlatform public enum TargetPlatform
{ {
Windows, Windows,
Linux,
Android, Android,
MacOS, MacOS,
iOS, iOS,

Loading…
Cancel
Save