- CMake >= 3.26
- C++20-compatible compiler (e.g. GCC 11+, Clang 13+, MSVC 2022+)
- GLFW installed (must be available to CMake via
find_package(glfw3 REQUIRED))
Clone the project
git clone https://github.com/simocaruso/craft-clone.git
cd craft-cloneCreate a build directory
mkdir build && cd buildRun CMake and build the project
cmake ..
cmake --build .Run the project
./craft_clone