Hi, I'm new here. I recently tried to set up SFML in Microsoft Visual C++, but I can't get it to work. Whenever I build this:
#include <SFML/System.hpp>
#include <iostream>
int main()
{
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}
I get this:
LINK : fatal error LNK1104: cannot open file 'sfml-system.lib'
I've looked all over for a solution, but nothing has worked. Can anyone help me?