Bonjour , J'ai mis la code de base du tuto et j'ai suivi toute les étape de l'instalation mais visual studio me dit sa :
error LNK1112: module machine type 'x64' conflicts with target machine type 'X86'
Le code :
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
Ps: je suis sous visual studio 2013 express avec sfml version 2.2 (version 64 bits)
Merci d'avance!!!