The other modules I've tried seem to work, but when I try to use the network module I keep getting undefined reference errors, for example:
#include <SFML/Network.hpp>
int main()
{
sf::IPAddress Address1;
return EXIT_SUCCESS;
}
gives this error:
"""
obj\Debug\main.o||In function `main':|
C:\Documents and Settings\User\My Documents\testthing\main.cpp|5|undefined reference to `sf::IPAddress::IPAddress()'|
||=== Build finished: 1 errors, 0 warnings (0 minutes, 1 seconds) ===|
"""
OS: WindowsXP
Intel GMA 950 integrated
SFML 1.6
It happens when I try to use other parts of the module as well, I started using SFML last Saturday so it could be something simple, dunno
.
Thank you very much for any help.