ok, the dlls are in bin, not lib. but whenever i try to build anything it always tells me that class members arent available that should be for example:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow Window(sf::VideoMode(800, 600, 32), "SFML Sample Application");
while (Window.IsOpened())
{
sf::Event Event;
while (Window.PollEvent(Event))
{
switch (Event.Type)
{
case sf::Event::Closed:
Window.Close();
break;
default:
break;
}
}
Window.Clear(sf::Color(255, 0, 155));
Window.Display();
}
return 0;
}
a code this simple gives me these errors
-------------- Build: Debug in SFMLSAMPLEAPP ---------------
Compiling: main.cpp
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp: In function 'int main()':
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:7: error: 'class sf::RenderWindow' has no member named 'IsOpened'
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:10: error: 'class sf::RenderWindow' has no member named 'PollEvent'
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:12: error: 'class sf::Event' has no member named 'Type'
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:15: error: 'class sf::RenderWindow' has no member named 'Close'
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:22: error: 'class sf::RenderWindow' has no member named 'Clear'
C:\Users\Owner\Desktop\xxx.cpp\xxx\aaa\sdf\SFMLSAMPLEAPP\main.cpp:23: error: 'class sf::RenderWindow' has no member named 'Display'
Process terminated with status 1 (0 minutes, 3 seconds)
6 errors, 0 warnings