0 Members and 1 Guest are viewing this topic.
sfml-system-s-d.lib(Platform.obj) : warning LNK4099: PDB 'vc90.pdb' was not found with 'E:\_proj\_bin\libs\sfml-1.5\lib\sfml-system-s-d.lib' or at 'E:\_proj\Middle\Debug\vc90.pdb'; linking object as if no debug infosfml-system-s-d.lib(Clock.obj) : warning LNK4099: PDB 'vc90.pdb' was not found with 'E:\_proj\_bin\libs\sfml-1.5\lib\sfml-system-s-d.lib' or at 'E:\_proj\Middle\Debug\vc90.pdb'; linking object as if no debug infosfml-system-s-d.lib(Sleep.obj) : warning LNK4099: PDB 'vc90.pdb' was not found with 'E:\_proj\_bin\libs\sfml-1.5\lib\sfml-system-s-d.lib' or at 'E:\_proj\Middle\Debug\vc90.pdb'; linking object as if no debug infosfml-window-s-d.lib(Joystick.obj) : warning LNK4099: PDB 'vc90.pdb' was not found with 'E:\_proj\_bin\libs\sfml-1.5\lib\sfml-window-s-d.lib' or at// many, many more...
#ifndef _DEBUG #include <sfml/System.hpp> #pragma comment(lib, "sfml-system-s.lib") #include <sfml/Window.hpp> #pragma comment(lib, "sfml-window-s.lib") #include <sfml/Graphics.hpp> #pragma commnet(lib, "sfml-graphics-s.lib")#else #include <sfml/System.hpp> #pragma comment(lib, "sfml-system-s-d.lib") #include <sfml/Window.hpp> #pragma comment(lib, "sfml-window-s-d.lib") #include <sfml/Graphics.hpp> #pragma comment(lib, "sfml-graphics-s-d.lib")#endif
This is because you don't have the debug symbols of SFML (which is normal). These warnings won't happen in release mode.