Unify project files

This commit is contained in:
luboslenco
2023-12-05 00:38:43 +01:00
parent 77a93588ce
commit 69adf45234
2 changed files with 12 additions and 12 deletions
-12
View File
@@ -1,12 +0,0 @@
// Imported by armorcore/kfile.js
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;
flags.on_project_created = function(project) {
project.addDefine('IDLE_SLEEP');
}
@@ -1,4 +1,16 @@
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;
flags.on_c_project_created = function(c_project, platform, graphics) {
c_project.addDefine('IDLE_SLEEP');
}
let project = new Project("ArmorPad");
let root = "../../";
project.addSources("Sources");