hello, i have been trying to set up sfml on visual studio 2010, ( sfml 1.6) and i have tried ALOT of thing but nothing works , i recompiled the project i have downloaded the filles from a site that said those where the compiles vs 2010 lib filles ect ect i have linked evrything correctly ( i really hope ) and i was able to use some functions in command prompt but as soon as i try to make a basic window it gives me "The application was unable to start correctly (0xc0150002). Click OK to close the application. i have the .dll's in the main projects folder, and im not getting any compiler errors :S
this is the code
#include <SFML/Window.hpp>
int main()
{
sf::Window App(sf::VideoMode( 800, 600, 32 ), "SFML Test Window");
bool Running = true;
while (Running){
App.Display();
}
return EXIT_SUCCESS;
}
and this is the debug output
'sfml.exe': Loaded 'C:\Users\SEX\Documents\Visual Studio 2010\Projects\sfml\Debug\sfml.exe', Symbols loaded.
'sfml.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'sfml.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'sfml.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'sfml.exe': Loaded 'C:\Program Files\AVAST Software\Avast\snxhk.dll', Cannot find or open the PDB file
'sfml.exe': Loaded 'C:\Users\SEX\Documents\Visual Studio 2010\Projects\sfml\sfml\sfml-window-d.dll', Cannot find or open the PDB file
The program '[7996] sfml.exe: Native' has exited with code -1072365566 (0xc0150002).
what should i do ? reinstal vs 2010? get another ide? i am pretty bummed out about this i have been trying recompiling and relinking over and over i hope i did not just screw it up even more.
any more info that could help? :?: