this is 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;
}
i get 220 preprocessor and compiler errors. first in the list is:
Config.hpp:122:19: error: climits: No such file or directory
in case the crt library is not linked correctly. how do i do it manually?
may be some of the million project build settings must be adjusted,
but the starting tutorial alone doesn't do it...