Crosser is a simple 2D game in which you have to find the cross (actually a green square right now).
Before you build Crosser, you must have the API installed. Look at "Building the API" in the readme of CrosserAPI.
- Make sure you have sfml and cmake installed
- Clone this repository
- Cd to the project root
- Execute this command to build, replacing
/path/to/target/folder
with any folder you want to use (important: don't use the same folder as the API):
cmake -S . -B /path/to/target/folder; cmake --build /path/to/target/folder --target Crosser -- -j 3;
You can now run Crosser using ./Crosser
!