I've downloaded SDL here: the development minGW .
http://libsdl.org/download-2.0.php
I found this site to install:
www.netadelica.com/coding/sdl/install.html
I just renamed /msys/bin/sdl-config to: /msys/bin/sdl2-config
as well as renaming the SDL file in windows to SDL2.dll
I looked around online and I've read that I'm supposed to include
-lmingw32 -lSDLmain -lSDL to a project properties linker options ?
how should I do this ?
right now my error is while debugging a basically empty program :
#include <cstdlib>
#include "SDL/SDL.h"
using namespace std;
oke that worked thanks.
I was looking at that page earlier actually , but it all sounded very confusing and I was unsure how to continue without making things worse .