Reputation: 43
Every time I try to run the code below I get the error that is in the title, how do I fix this?
#include <SDL\SDL.h>
int main(int argc, char** argv) {
SDL_Init(SDL_INIT_EVERYTHING);
return 0;
}
Upvotes: 4
Views: 3779
Reputation: 131
The error means that the linker is unable to find the function SDL_Init. This is usually caused by improper paths to the libraries that contain function definition.
In our case :
You can either put all required SDL dlls into your Output directory(by default it will be the bin folder)
Or
Upvotes: 3