[quote=“DBrickShaw, post:40, topic:1713”]How would I go about building the SDL version from source? I’m already fairly familiar with building the Windows binary (using MinGW), but I’m not sure how the makefile should be modified to build the SDL version (or is there a separate branch for that code somewhere?).[/quote]You’ll want to add TILES=1 to your make command. The Makefile can build all the versions now (and the experimentals are both being cross-compiled on a Linux system). However, note the SDL version has more dependencies (specifically, SDL and SDL_ttf), and those in turn have some dependencies; you may or may not need to resolve them.
Also, the TILES=1 may change to SDL=1 in the near future, so read the Makefile comments to be sure.
Just in case you’re curious, here’s what I have currently for the Jenkins SDL build (compiled on Linux for a Win32 target):
[code]make CROSS=/home/narc/src/mxe/usr/bin/i686-pc-mingw32- TILES=1 clean
export LDFLAGS="${LDFLAGS} -s"
export CXXFLAGS="-Os -I/home/narc/src/mxe/usr/i686-pc-mingw32/include/SDL"
make CROSS=/home/narc/src/mxe/usr/bin/i686-pc-mingw32- TILES=1 DEBUG= -j4
make CROSS=/home/narc/src/mxe/usr/bin/i686-pc-mingw32- TILES=1 bindist[/code]