From bfd07ba309c2114d55605be447b96b67ffa4c166 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Mon, 18 Aug 2025 20:50:31 +0200 Subject: [PATCH] Example. Add missing file. The file "sw.js" was removed mistakenly Fixed: https://github.com/ArthurSonzogni/FTXUI/issues/1098 --- examples/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 0a49fe92..e74069a8 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -17,10 +17,12 @@ add_subdirectory(dom) if (EMSCRIPTEN) get_property(EXAMPLES GLOBAL PROPERTY FTXUI::EXAMPLES) foreach(file + "index.css" "index.html" "index.mjs" - "index.css" - "run_webassembly.py") + "run_webassembly.py" + "sw.js" + ) configure_file(${file} ${file}) endforeach(file) endif()