Android fixes

This commit is contained in:
luboslenco
2025-08-20 13:34:12 +02:00
parent dc80d1781d
commit 3036b2e097
9 changed files with 23 additions and 19 deletions
+5 -1
View File
@@ -4,7 +4,7 @@ flags.embed = os_argv().indexOf("--embed") >= 0; // os_argv().indexOf("--debug")
flags.physics = true;
flags.with_d3dcompiler = true;
flags.with_nfd = true;
flags.with_compress = true;
flags.with_compress = platform != "android";
flags.with_image_write = true;
flags.with_iron = true;
flags.with_eval = true;
@@ -337,5 +337,9 @@ if (flags.with_video_write) {
project.add_cfiles("sources/libs/minih264e.c");
}
if (graphics === "metal" || (graphics === "vulkan" && platform != "android")) {
project.add_define("IRON_BGRA");
}
project.flatten();
return project;