| 123456789101112131415161718192021222324252627 |
- ==================
- Deploying to HTML5
- ==================
- Install emscripten
- ------------------
- Install emscripten:
- * https://emscripten.org/docs/getting_started/downloads.html
- Set environment variables
- -------------------------
- .. code::
- export EMSCRIPTEN=<emsdk>/upstream/emscripten
- Running the generated output
- ----------------------------
- Use `emrun` to run the generated `index.html`:
- .. code::
- cd <output_dir>
- <emsdk>/upstream/emscripten/emrun index.html
|