This commit is contained in:
luboslenco
2024-08-24 12:25:37 +02:00
parent 4ad686a9e6
commit f7b79d4e67
314 changed files with 13 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
let flags = globalThis.flags;
flags.name = 'ArmorPad';
flags.package = 'org.armorpad';
flags.with_nfd = true;
flags.with_tinydir = true;
flags.with_g2 = true;
flags.with_iron = true;
flags.with_zui = true;
let project = new Project("ArmorPad");
project.addSources("sources");
let root = "../../../";
project.addShaders(root + "armorcore/shaders/*.glsl",);
project.addAssets(root + "base/assets/font_mono.ttf", { destination: "data/{name}" });
project.addAssets(root + "base/assets/text_coloring.json", { destination: "data/{name}" });
project.addDefine('IDLE_SLEEP');
project.addProject(root + "armorcore");
return project;