wasm: make paint compile

This commit is contained in:
luboslenco
2026-01-30 00:01:00 +01:00
parent 7f9bc17326
commit 30cac3ad5a
13 changed files with 112 additions and 29 deletions
+10
View File
@@ -17,6 +17,16 @@ 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_video_write = false;
flags.with_eval = false;
flags.with_plugins = false;
flags.with_raytrace = false;
flags.idle_sleep = false;
}
let project = new Project(flags.name);
project.add_project("../base");
project.add_tsfiles("sources");