Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbund/2-fruity-4-you
FEH Proteus Simulator project
https://github.com/mbund/2-fruity-4-you
cd ci cpp make nix
Last synced: about 2 months ago
JSON representation
FEH Proteus Simulator project
- Host: GitHub
- URL: https://github.com/mbund/2-fruity-4-you
- Owner: mbund
- License: mit
- Created: 2022-11-16T19:30:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-06T05:06:13.000Z (about 2 years ago)
- Last Synced: 2024-04-24T03:22:33.745Z (9 months ago)
- Topics: cd, ci, cpp, make, nix
- Language: C++
- Homepage: https://mbund.github.io/2-fruity-4-you
- Size: 1.41 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2 Fruity 4 You
Fruit Ninja clone FEH Proteus Simulator project for Autumn 2022.![gameplay screenshot](assignment/gameplay-screenshot.png)
## Documentation
Documentation can be found at [https://mbund.github.io/2-fruity-4-you](https://mbund.github.io/2-fruity-4-you).
## Running
The [latest binary releases can be found here](https://github.com/mbund/2-fruity-4-you/releases/latest) for x86_64 Ubuntu, x86_64 Windows, and x86_64 MacOS. [NixOS](#nixos) users can also easily run it.## Building
Install the required [dependencies](#dependencies), clone the repository (including submodules) and run `make` to build.```
git clone https://github.com/mbund/2-fruity-4-you --recurse-submodules && cd 2-fruity-4-you && make
```[Doxygen](https://doxygen.nl) is used to create the documentation and may need to be installed as well.
## Dependencies
### Ubuntu
Install the required dependencies.```
apt install g++ pkg-config mesa-common-dev libopengl-dev
```### Fedora
Install the required dependencies.```
dnf install vim-common g++ xorg-x11-proto-devel libX11-devel libglvnd-devel
```### NixOS
This repository is a flake and has a nix development shell available. You can also just run the game directly without cloning anything by running the following.
```
nix run github:mbund/2-fruity-4-you
```