C# improvements

This commit is contained in:
Joshua Granick
2016-08-30 03:48:30 -07:00
parent 5f4b564e2a
commit b337e232f0
6 changed files with 27 additions and 9 deletions

View File

@@ -212,7 +212,7 @@ class CommandLineTools {
target = PlatformHelper.hostPlatform;
targetFlags.set ("cpp", "");
case "neko":
target = PlatformHelper.hostPlatform;
@@ -222,11 +222,16 @@ class CommandLineTools {
target = PlatformHelper.hostPlatform;
targetFlags.set ("nodejs", "");
case "cs":
target = PlatformHelper.hostPlatform;
targetFlags.set ("cs", "");
case "iphone", "iphoneos":
target = Platform.IOS;
case "iphonesim":
target = Platform.IOS;
@@ -1180,7 +1185,7 @@ class CommandLineTools {
target = PlatformHelper.hostPlatform;
targetFlags.set ("cpp", "");
case "neko":
target = PlatformHelper.hostPlatform;
@@ -1196,6 +1201,11 @@ class CommandLineTools {
target = PlatformHelper.hostPlatform;
targetFlags.set ("nodejs", "");
case "cs":
target = PlatformHelper.hostPlatform;
targetFlags.set ("cs", "");
case "iphone", "iphoneos":
target = Platform.IOS;