Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qookei/ld49
My Ludum Dare 49 game
https://github.com/qookei/ld49
Last synced: 12 days ago
JSON representation
My Ludum Dare 49 game
- Host: GitHub
- URL: https://github.com/qookei/ld49
- Owner: qookei
- License: zlib
- Created: 2021-10-02T10:32:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-04T22:54:36.000Z (over 3 years ago)
- Last Synced: 2024-11-13T16:27:20.676Z (2 months ago)
- Language: C++
- Size: 130 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ancient Pixels
Ancient Pixels is my entry for Ludum Dare 49 ([link here](https://ldjam.com/events/ludum-dare/49/ancient-pixels)).
## Compiling
You will need:
- Emscripten (new enough to support C++20)
- Meson and NinjaClone the repository with submodules:
```
$ git clone https://github.com/qookei/ld49 --recursive
```Then configure it:
```
$ meson build --cross-file=cross/emscripten.txt
```Then compile it:
```
$ ninja -C build
```Then, create a symlink for `ld49.data` and launch a web server to test it, for example:
```
$ ln -s build/ld49.data ld49.data
$ python -m http.server
```