base: fix audio compile

This commit is contained in:
luboslenco
2026-05-31 14:01:36 +02:00
parent 690ee391a9
commit 4bfdae9b1f
14 changed files with 83 additions and 79 deletions
+6 -5
View File
@@ -14,16 +14,17 @@ flags.with_plugins = true;
flags.with_kong = true;
flags.with_raytrace = true;
flags.with_bc7 = true;
// flags.with_audio = true;
flags.idle_sleep = true;
flags.export_version_info = true;
flags.export_data_list = platform == "android"; // .apk contents
if (platform == "wasm") {
flags.with_nfd = false;
flags.with_compress = false;
flags.with_plugins = false;
flags.with_raytrace = false;
flags.export_data_list = true;
flags.with_nfd = false;
flags.with_compress = false;
flags.with_plugins = false;
flags.with_raytrace = false;
flags.export_data_list = true;
}
let project = new Project(flags.name);