Compiling SDL under Windows with sdl-config
- by DarrenVortex
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?