A modern OpenGL Minecraft like game
- GLFW3 (extern)
- SQLite3 (extern)
- Glad OpenGL loader (included)
- stb_image (included)
- stb_truetype (included)
- Tiny C Thread (included)
-
Install dependencies:
sudo apt install build-essential cmake libglfw3-dev libsqlite3-dev
-
Generate MakeFile via CMake:
cd desktop && mkdir build && cd build && cmake ..
-
Build the project:
make -j$(nproc)
-
Install dependencies:
brew install cmake glfw sqlite
-
Generate MakeFile via CMake:
cd desktop && mkdir build && cd build && cmake ..
-
Build the project:
make -j$(sysctl -n hw.ncpu)
-
Install MSYS2
-
Install dependencies:
pacman -S mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-glfw mingw-w64-x86_64-sqlite3
-
Generate MakeFile via CMake:
cd desktop && mkdir build && cd build && cmake -G "MinGW Makefiles" ..
-
Build the project:
mingw32-make -j$(nproc)