diff --git a/.github/workflows/build_ci_wasm.yml b/.github/workflows/build_ci_wasm.yml index 86315bb..1a9b211 100644 --- a/.github/workflows/build_ci_wasm.yml +++ b/.github/workflows/build_ci_wasm.yml @@ -31,7 +31,7 @@ jobs: - name: Build WASM run: | mkdir dist - em++ --bind -Wno-header-guard -Iinclude -pipe -O3 -ffast-math -std=c++17 -funroll-loops $(find src -type f -name "*.cpp") -sEXPORTED_FUNCTIONS=_executeSource -sEXPORTED_RUNTIME_METHODS=ccall,cwrap -o dist/n8.js + em++ --bind -Wno-header-guard -Iinclude -Ilib/QuickDigest5/include -pipe -O3 -ffast-math -std=c++17 -funroll-loops $(find lib/QuickDigest5/src -type f -name "*.cpp") $(find src -type f -name "*.cpp") -sEXPORTED_FUNCTIONS=_executeSource -sEXPORTED_RUNTIME_METHODS=ccall,cwrap -o dist/n8.js ls -ral dist - name: Upload dist folder