Thankyou very much... I found a SDL tutorial, i downloaded the library and i included them in the properties but when i compiled it says "cannot find SDL.dll"
I downloaded the folder and i placed in it c:/programfiles(x86)
I created a new empty project, went into properties, and linked all the lib and include to the correct ones like what the tutorial says, created new cpp and wrote
1 2 3 4 5 6 7 8 9 10
#include <SDL.h>
int main()
{
SDL_Init(SDL_INIT_EVERTHING);
SDL_Quit()
return 0;
}
I compiled and it said,
The program can't start because SDL.dll is missing from your computer.
Try reinstalling the program to fix this problem.