SDL - DEV C++ problem

Hello!
Iam programming with DEV C++ and I setup everything with this tutorials.

https://sites.google.com/site/sdlgamer/beginner/lesson-2
http://lazyfoo.net/SDL_tutorials/lesson01/windows/devcpp/index.php

If Iam running this code:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "SDL/SDL.h"

int main(int argc, char* args[] )
{
	//Start SDL
	SDL_Init(SDL_INIT_EVERYTHING);

	//Quit SDL
	SDL_Quit();

	return 0;
}


there is always this error

cannot find -ISDLmain
ld returned 1 exit status
[Build Error] [First_3D.exe] Error1

What Iam doing wrong?
-lSDLmain <- Should be a lower case L.
Topic archived. No new replies allowed.