Add webassembly support (#79)

This commit is contained in:
Arthur Sonzogni
2021-03-22 00:26:52 +01:00
committed by GitHub
parent 65c0297789
commit 373b016ca9
35 changed files with 267 additions and 47 deletions

View File

@@ -1,3 +1,14 @@
add_subdirectory(component)
add_subdirectory(dom)
add_subdirectory(util)
if (EMSCRIPTEN)
foreach(file
"index.html"
"run_webassembly.sh")
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/${file}
${CMAKE_CURRENT_BINARY_DIR}/${file}
)
endforeach(file)
endif()