1
General / Re: SFML linking libraries to CodeBlocks statically
« on: April 24, 2019, 02:56:41 pm »Ah, that's because sfml-system-s needs to be after the other SFML libraries, as all SFML libraries depend on sfml-system. That's also why it's listed for every library in the tutorial. You should only copy a library once from that list, but keep the relative order as in the list.
The rule of thumb for linking order is: If library X depends on library Y, then X must come before Y.
It worked, thank you