Hello,
I'm currently using SFML 2.x for a project and I'm also thinking about using Thor and SFGUI. I do use Visual Studio 2013 Preview and used Cmake to build/compile SFML (dynamic libs) and Thor which worked great.
However, when I try to generate a VS 2013 solution for SFGUI using Cmake it says it cannot find the SFML module. Now there are apparently 2 ways to solve this.
1: Set SFML_Dir to the directory containing "installed" SFML
When I do this (same when generating Thor) it just says it cannot find SFML and resets the SFML_DIR variable to "SFML_DIR-NOTFOUND". Some posts suggested also using SFML_ROOT and SFML_INCLUDE_DIR, which I tried and didn't help.
The SFML Directory, however, does not contain the SFMLConfig.cmake. If I rename the Config.cmake in SFML/Cmake and link to this folder it says that the SFML version is not supported (2).
2: Copy the FindSFML.cmake to the CMAKE_MODULE_PATH
When doing this, it says it cannot find specific SFML modules (graphics, system).
Here's a screenshot of my settings and the error.
I'm not really experienced with Cmake, but I hope we can find a solution.