i have a problem with SML. It goes like this: i added the libraries of sfml-graphics.lib, sfml-window.lib, sfml-system.lib and sfml-audio.lib, and their debug variants in the debug too.
But when i try this code:
#include<iostream>
#include"..\SFML-2.4.2\include\SFML\Window.hpp"
using namespace std;
int main() {
    sf::Window window(sf::VideoMode(800, 600), "CosaFea");
    /*while (window.isOpen()){
        sf::Event event;
        while (window.pollEvent(event)){
            if (event.type == sf::Event::Closed)
                window.close();
        }
    }*/
    return 0;
}
It jumps 4 LNK2019 errors and 4 external unresolved symbols LNK1120.
Anyone have any idea of what I can be doing wrong?



