This is the repository for my take on the classic arcade game Astroids built in C using GLFW and OpenGL.
- CMake
- (MacOS) Xcode CLT or the full Xcode application.
- (Windows) Visual Studio
- Git
-
Clone this repository:
git clone --recursive https://github.com/stickyPiston/astroids.git && cd astroids. -
For Windows users: Open the
astroidsfolder in Visual Studio. Press play to build and run the application.For Unix users: run CMake:
cmake -S . -B build. This will create a build directory. Go into that folder (cd build) and runmake. This will create an executable calledAstroidsinside the build folder. Run that (./Astroids) and enjoy the application.