Files
edgetx/cmake/CopyWasmModules.cmake
T
2026-08-03 16:37:20 +08:00

6 lines
260 B
CMake

# Copy all WASM simulator modules from SRC_DIR to DST_DIR at build time.
# Invoked via cmake -P so the pattern is evaluated on every build.
file(INSTALL "${SRC_DIR}/" DESTINATION "${DST_DIR}"
MESSAGE_NEVER
FILES_MATCHING PATTERN "edgetx-*-simulator.wasm")