mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-28 14:37:04 +00:00
* require common.jake first * require Objective-J/Cappuccino stuff only when needed (automatically requiring these caused too many problems) * remove useless shebangs, cleanup whitespace
17 lines
517 B
JavaScript
17 lines
517 B
JavaScript
|
|
require("../../../common.jake");
|
|
|
|
var blend = require("cappuccino/jake").blend;
|
|
|
|
blend ("Aristo.blend", function(aristoTask)
|
|
{
|
|
aristoTask.setBuildIntermediatesPath(FILE.join($BUILD_DIR, "Aristo.build", $CONFIGURATION))
|
|
aristoTask.setBuildPath(FILE.join($BUILD_DIR, $CONFIGURATION));
|
|
|
|
aristoTask.setThemeDescriptors(new FileList("ThemeDescriptors.j"));
|
|
aristoTask.setIdentifier("com.280n.blend.Aristo");
|
|
aristoTask.setResources(new FileList("Resources/*"));
|
|
});
|
|
|
|
task ("build", ["Aristo.blend"]);
|