SFML community forums
Help => General => Topic started by: Deedolith on December 06, 2024, 09:51:33 pm
-
Hello,
I am having troubles building SFML from source.
Here are the steps I did:
- Clone the github repository with GitHub Desktop.
- Configure the project with CMake
- Generate the project with CMake (all options left to default values).
- Open the project with Visual Studio 2022.
- Build Debug/x64 and Release/x64 (no option change).
There are no compile errors, libraries (.lib files) are generated, but no DLLs.
Did I miss something ?
-
With SFML 3 (master) we've changed the default behavior to match CMake's default behavior by building static libraries, if nothing has been specified.
If you want to build shared libraries, you can set BUILD_SHARED_LIBS to ON.
See also the migration guide (https://github.com/SFML/SFML/blob/master/migration.md) if you're coming from SFML 2
-
I do not see such entry within CMake, should I add it ?
-
I believe he is trying to say when you are to build SFML, you need to specify "-DBUILD_SHARED_LIBS=On" in a string of commands like "cmake . -B "build" -DBUILD_SHARED_LIBS=On".
-
And if you use the CMake GUI then add it, yes.