I built SFML 2.0 RC with CMake with a tutorial I found online, and I know it works, because I've used it before (with /MD setting), and it worked fine. I want to use the /MT flag with SFML, and I found out through the forums I need to rebuild it, so I installed CMake and did everything I had to with VS2012 command prompt, and it built fine. I made sure I used the "SFML_USE_STATIC_STD_LIBS=TRUE", but it still gives me the errors in studio when I try to compile it with link errors like
sfml-window-s.lib(Window.cpp.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' in Source.obj
I'm so frustrated, because I've spent hours trying to fix this, and I have gotten no progress at all. Can you tell me what I need to fix to get this to work?
I'm using the settings -G "NMake Makefiles" -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=FALSE -D SFML_USE_STATIC_STD_LIBS=TRUE
Would someone by any chance already have pre-built sfml 2.0 RC with these specs?