Compiling SDL under Windows with sdl-config

Posted by DarrenVortex on Game Development See other posts from Game Development or by DarrenVortex
Published on 2013-07-03T08:25:59Z Indexed on 2013/07/03 11:19 UTC
Read the original article Hit count: 482

Filed under:
|
|
|

I have downloaded NXEngine (The Open Source version of Cave Story). I have a make file in the directory, which I execute using msys. However, the make file uses sdl-config:

g++ -g -O2 -c main.cpp -D DEBUG `sdl-config --cflags` -Wreturn-type -Wformat -Wno-multichar -o main.o
/bin/sh: sdl-config: command not found

And apparently sdl-config does not exist under windows since there's no sdl installation.
There's also no documentation on the official sourceforge website about this! What do I do?

© Game Development or respective owner

Related posts about sdl

Related posts about Windows