Skip to content

Instantly share code, notes, and snippets.

@konsumer
Last active September 4, 2023 07:14
Show Gist options
  • Save konsumer/41d2c9c5a3a0802b3baa01a3779cc68b to your computer and use it in GitHub Desktop.
Save konsumer/41d2c9c5a3a0802b3baa01a3779cc68b to your computer and use it in GitHub Desktop.
Quick wasm demo with raylib
#!/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