Im lost, if i want to create a simple window in SFML, do i use a console project? or a SFML project? or what?! I use code blocks currently and have had a hellish day trying to install SFML to work properly, im constantly getting errors with the SFML project wizard in code blocks and the only answer ive been able to get was to stop using the wizard... So what project do i use? Will console work? Heres the extremely simple code i cant get to work(using a console project atm).
#include <SFML/Graphics.hpp>
#include <SFML/Window.hpp>
int main(int argc, char** argv)
{
bool running = true;
sf::Window App(sf::VideoMode(1200, 600, 32), "SFML WINDOW");
while(running)
{
App.Display();
}
return EXIT_SUCCESS;
}