1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#include <iostream>
#include <SFML/Audio.hpp>
#include <SFML/Graphics.hpp>
#include <SFML/Network.hpp>
#include <SFML/OpenGL.hpp>
#include <SFML/System.hpp>
#include <SFML/Window.hpp>
int main()
{
// The build test doesn't check any graphics since that would require a
// display server. We just test some basic Network / System functionality.
// However when building we can still include the other headers to ensure
// they compile.
// Print local IP
if (auto ip = sf::IpAddress::getLocalAddress()) {
std::cout << "Local IP = " << (*ip).toString() << std::endl;
} else {
std::cout << "Could not get local IP" << std::endl;
return 1;
}
// Call some time functions from sfml-system
if ((sf::seconds(5) + sf::milliseconds(1234)).asMilliseconds() != 6234)
return 1;
return 0;
}
|