Skip to content
Jonny edited this page May 17, 2024 · 14 revisions

All the information on how to build SFML's dependencies.

Building Instructions

Cloning

First clone this repository, as it uses submodules make sure those are also cloned

git clone --recurse-submodules https://github.com/eXpl0it3r/SFML-dependencies

Building with cmake

First configure the project files:

cmake -B build

use the -G parameter to specify a non-default generator, if needed, e.g. for MinGW Makefiles

cmake -B build -G "MinGW Makefiles"

Then build with

cmake --build build