https://github.com/gpmueller/mwe-wasm-app
MWE for compiling C++ to WASM to use as backend for a Web App
https://github.com/gpmueller/mwe-wasm-app
cpp cpp17 mwe wasm
Last synced: about 2 months ago
JSON representation
MWE for compiling C++ to WASM to use as backend for a Web App
- Host: GitHub
- URL: https://github.com/gpmueller/mwe-wasm-app
- Owner: GPMueller
- Created: 2019-10-24T13:32:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T15:15:53.000Z (over 5 years ago)
- Last Synced: 2025-02-03T20:13:21.376Z (4 months ago)
- Topics: cpp, cpp17, mwe, wasm
- Language: CMake
- Homepage: https://gpmueller.github.io/mwe-wasm-app
- Size: 340 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Web App using C++ compiled to WASM
=========================================================Build
---------------------------------------------------------For example,
```
mkdir -p build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=/usr/local/emsdk/emscripten/1.38.29/cmake/Modules/Platform/Emscripten.cmake
make -j
cd ..
```Host
---------------------------------------------------------For example,
```
python -m SimpleHTTPServer
```And then open `localhost:8000`.