mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 03:10:01 +08:00
15 lines
289 B
CMake
15 lines
289 B
CMake
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()
|