Remove forced -Ddisplay on 'lime display' output

This commit is contained in:
Joshua Granick
2018-08-14 09:08:50 -07:00
parent 8aec4d7080
commit ccf8c48923
11 changed files with 9 additions and 11 deletions

View File

@@ -210,7 +210,7 @@ class AIRPlatform extends FlashPlatform {
var template = new Template (File.getContent (hxml));
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -212,7 +212,7 @@ class AndroidPlatform extends PlatformTarget {
var template = new Template (File.getContent (hxml));
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -267,7 +267,6 @@ class EmscriptenPlatform extends PlatformTarget {
var template = new Template (File.getContent (hxml));
Sys.println (template.execute (context));
Sys.println ("-D display");
}

View File

@@ -129,7 +129,7 @@ class FlashPlatform extends PlatformTarget {
var template = new Template (File.getContent (hxml));
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -141,7 +141,7 @@ class HTML5Platform extends PlatformTarget {
var template = new Template (File.getContent (hxml));
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -404,7 +404,7 @@ class IOSPlatform extends PlatformTarget {
var context = generateContext ();
context.OUTPUT_DIR = targetDirectory;
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -284,7 +284,7 @@ class LinuxPlatform extends PlatformTarget {
var context = generateContext ();
context.OUTPUT_DIR = targetDirectory;
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -258,7 +258,7 @@ class MacPlatform extends PlatformTarget {
var context = generateContext ();
context.OUTPUT_DIR = targetDirectory;
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -327,7 +327,7 @@ class TVOSPlatform extends PlatformTarget {
var context = generateContext ();
context.OUTPUT_DIR = targetDirectory;
return template.execute (context) + "\n-D display";
return template.execute (context);
}

View File

@@ -103,7 +103,6 @@ class TizenPlatform extends PlatformTarget {
var template = new Template (File.getContent (hxml));
Sys.println (template.execute (context));
Sys.println ("-D display");
}

View File

@@ -388,7 +388,7 @@ class WindowsPlatform extends PlatformTarget {
var context = generateContext ();
context.OUTPUT_DIR = targetDirectory;
return template.execute (context) + "\n-D display";
return template.execute (context);
}