so i decided to try sfml, and i used the sample from the website to see if its working. heres the code
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <SFML/Window.hpp>
////////////////////////////////////////////////////////////
/// Entry point of application
///
/// \return Application exit code
///
////////////////////////////////////////////////////////////
int main()
{
// Create the main window
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
// Start main loop
bool Running = true;
while (Running)
{
App.Display();
}
return EXIT_SUCCESS;
}
Ive setup sfml with codeblocks correctly i believe, and i put all of the windows .dll in the folder.
but i keep getting errors
on line 17,23, and 26
the errors are saying theyre an undefined reference?