I have tried that before, somehow I was stupid enough to just move the ".lib" files into the parent directory where they were still found
So that's okay now. By the way, a very low-priority issue: FindSFML.cmake contains an install rule with
PATTERN ".svn" EXCLUDE
The problem is, Windows 7 seems not to allow files/directories anymore that start with "." (or is it just me?). In TortoiseSVN, one can choose to use "_svn" instead, so maybe this is an option (I hope to escape "." correctly):
REGEX "\\.svn|_svn" EXCLUDE
Edit: ".svn" seems to be still allowed, however one cannot manually create such folders. However I remember having had problems with TurtoiseSVN because of this... But nevermind, it's probably not worth a change