Last active
September 4, 2023 07:14
-
-
Save konsumer/41d2c9c5a3a0802b3baa01a3779cc68b to your computer and use it in GitHub Desktop.
Quick wasm demo with raylib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget https://github.com/raysan5/raylib/releases/download/4.5.0/raylib-4.5.0_webassembly.zip | |
unzip raylib-4.5.0_webassembly.zip | |
cd raylib-4.5.0_webassembly/ | |
wget https://raw.githubusercontent.com/raysan5/raylib/master/examples/core/core_basic_window.c | |
emcc -Os -I./include -s USE_GLFW=3 -s ASYNCIFY -DPLATFORM_WEB -o index.html core_basic_window.c lib/libraylib.a | |
npx -y live-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment