mirror of
https://github.com/plaatsoft/plaatcraft
synced 2026-08-27 19:29:59 +00:00
No description
- C 98.8%
- Makefile 0.7%
- CMake 0.3%
- GLSL 0.2%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| desktop | ||
| docs | ||
| wii | ||
| .editorconfig | ||
| LICENSE | ||
| README.md | ||
PlaatCraft
A modern OpenGL Minecraft like game
Screenshot
Dependencies
- GLFW3 (extern)
- SQLite3 (extern)
- Glad OpenGL loader (included)
- stb_image (included)
- stb_truetype (included)
- Tiny C Thread (included)
Build instructions
Linux (Ubuntu)
-
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)
macOS
-
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)
Windows
-
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)
