Hello,
I'm using SFML 1.6 in VS2010 (I recompiled from source for VS2010). I use the static libraries, and it works well when the project setting is:
- "Use of MFC: Use standard Windows libraries"
using this test code:
#include <SFML/System.hpp>
#include <SFML/Graphics.hpp>
#include <SFML/Window.hpp>
int main(){
sf::RenderWindow wnd( sf::VideoMode(100,200), "Angled Image");
}
Unfortunately, I need this project to also use some other libraries, which use a MFC shared DLL. So, as soon as I change that setting to:
- "Use of MFC: MFC in a Shared DLL"
I get a linker error, "error LNK1120: 38 unresolved externals". Does SFML use some libraries that would be included when I set "use standard Windows libraries", but I might have to manually include when I change that? Or, you know, any other reason this setting might mess up my build?
Thanks!