Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Ninja

Clone 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
```