SFML community forums
Help => General => Topic started by: TheDuceCat on May 20, 2012, 06:33:57 am
-
Why does SFML require you to link .lib files and have the .dll files there? Whereas something like Box2D requires only the .lib files.
-
Search "dynamic vs static libraries" on Google ;)
-
Thanks! Is there any way I can just use the lib file, so I don't have to include the dll files separate in my build?
-
Yes, that's called "static linking". Search for it and the keywords mentioned by Laurent, maybe combined with "MSDN".
-
Thanks a lot!