I'm trying to use SFML with the newest Visual Studio version, 14 CTP.
Why?
SFML barely has out-of-the-box support for Visual Studio 2013 yet, and the P in CTP stands for
preview, meaning that it isn't final and things
might still be broken.
and generated project files for Visual Studio 13
Why?If you are serious about testing out Visual Studio 14, then at least get a CMake nightly build as well. They already have "support" for Visual Studio 14.
I combined them into one library using lib.exe.
Why?Just... don't... do this.
I think the issue is about libjpeg. How can I debug this problem?
You can't debug something that isn't a bug
. The distribution of SFML and its accompanying source on GitHub was not made or tested for Visual Studio 14. It will probably come at some point, but not yet. Laurent has this habit of committing pre-built library blobs of external libraries into the git repository as well. Obviously if they are built with Visual Studio 2012 in mind, and just happen to function with Visual Studio 2013 by luck, they aren't guaranteed to work automatically with Visual Studio 14. You will have to rebuild all the external libraries yourself since it is likely Microsoft decided to change something in the library interface that made the pre-built libraries unusable.