Remove forced -Ddisplay on 'lime display' output
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -267,7 +267,6 @@ class EmscriptenPlatform extends PlatformTarget {
|
||||
var template = new Template (File.getContent (hxml));
|
||||
|
||||
Sys.println (template.execute (context));
|
||||
Sys.println ("-D display");
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -103,7 +103,6 @@ class TizenPlatform extends PlatformTarget {
|
||||
var template = new Template (File.getContent (hxml));
|
||||
|
||||
Sys.println (template.execute (context));
|
||||
Sys.println ("-D display");
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user