A bullet-hell shooter game made in C99 for my college project.
Ubuntu
sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
mkdir build
cd build
cmake ..
cmake --build .
./kosmos
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../mingw.cmake ..
make
wine kosmos.exe
Install cmake and a C compiler if you haven't already.
mkdir build
cd build
cmake .. -G "MinGW"
cmake --build .
# kosmos.exe should appear in the build folder
mkdir build
cd build
cmake ..
cmake --build .
./kosmos