Issue
I'm trying to build SFML's source code after I've ran the directory through CMake and after CMake generated the makefiles. I have no idea how though.
This is how the directory where I've set CMake to dump it's generation to:
Solution
On Linux I use
cmake --build .
to build my project. It calls the according build command. It works with make
and ninja
. Probably it works on Windows with MinGW.
Remember that cmake doesn't come with a build system. It only calls the commands. You have to install the build system you want to use.
Answered By - Thomas Sablik