https://github.com/redstonewizard08/game
A quick game I'm making for the web with C++!
https://github.com/redstonewizard08/game
Last synced: 10 months ago
JSON representation
A quick game I'm making for the web with C++!
- Host: GitHub
- URL: https://github.com/redstonewizard08/game
- Owner: RedstoneWizard08
- License: mit
- Created: 2023-01-24T23:31:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T17:01:54.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T22:30:32.572Z (12 months ago)
- Language: C++
- Size: 8.84 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Game
A quick game I'm making for the web with C++!
## Platform Support
Here's the platform support status:
__Key__:
| Icon | Meaning |
| :--: | :-------------------- |
| 🟢 | Full Support |
| 🟠| Some (in-dev) support |
| 🟡 | Untested |
| 🔴 | Untested + unplanned |
| Platform | Status |
| :---------------- | :----: |
| Linux | 🟢 |
| WASM (Emscripten) | 🟠|
| Windows | 🟡 |
| MacOS | 🟡 |
## Compiling
Here's a script to compile for linux:
```sh
#!/bin/bash
# Auto-generate configure and other files.
./autogen.sh
# Configure the project.
./configure
# Build the project and dependencies.
make
```
And here's how to compile for the web (emscripten):
```sh
#!/bin/bash
# Auto-generate configure and other files.
./autogen.sh
# Configure the project.
emconfigure ./configure
# Build the project and dependencies.
emmake make
```