Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qookei/ld50
Ludum Dare 50 game
https://github.com/qookei/ld50
Last synced: 22 days ago
JSON representation
Ludum Dare 50 game
- Host: GitHub
- URL: https://github.com/qookei/ld50
- Owner: qookei
- License: zlib
- Created: 2022-04-02T10:19:19.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T00:31:31.000Z (almost 3 years ago)
- Last Synced: 2024-11-13T16:27:20.802Z (3 months ago)
- Language: C++
- Size: 598 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# LD50
The source code for my Ludum Dare 50 entry.
## Compiling
You will need:
- Emscripten (new enough to support C++20)
- Meson and NinjaClone the repository:
```
$ git clone https://github.com/qookei/ld50
```Then configure it:
```
$ meson build --cross-file=cross/emscripten.txt
```Then compile it:
```
$ ninja -C build
```Then create a symlink for `ld50.data` and launch a web server to test it, for example:
```
$ ln -s build/ld50.data
$ python -m http.server
```