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
astroids
folder 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 calledAstroids
inside the build folder. Run that (./Astroids
) and enjoy the application.