Run formatter

This commit is contained in:
Joshua Granick
2019-07-12 12:08:09 -07:00
parent 66344c8523
commit 1188b3aa42
77 changed files with 6499 additions and 6110 deletions

View File

@@ -57,8 +57,14 @@ class TizenPlatform extends PlatformTarget
}
CPPHelper.compile(project, targetDirectory + "/obj", args);
System.copyIfNewer(targetDirectory + "/obj/ApplicationMain" + (project.debug ? "-debug" : "") + ".exe",
targetDirectory + "/bin/CommandLineBuild/" + project.app.file + ".exe");
System.copyIfNewer(targetDirectory
+ "/obj/ApplicationMain"
+ (project.debug ? "-debug" : "")
+ ".exe",
targetDirectory
+ "/bin/CommandLineBuild/"
+ project.app.file
+ ".exe");
TizenHelper.createPackage(project, targetDirectory + "/bin/CommandLineBuild", "");
}