blob: 51f25bf3bcb2810edbf8336e44c5e1a359ef2cf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Build settings for the SDL backend
MODULES += backends/sdl
DEFINES += -DUNIX
INCLUDES += `sdl-config --cflags`
LIBS += `sdl-config --libs`
OBJS += backends/sdl/sdl-common.o
# The normal (non OpenGL-accelerated) SDL backend
OBJS += backends/sdl/sdl.o
# Uncomment these lines (instead of the above) to use SDL with OpenGL
# OBJS += backends/sdl/sdl_gl.o
# LIBS += -lGL
# Uncomment this in addition to the above if you compile on Mac OS X
# DEFINES += -DMACOSX
# LIBS += -framework QuickTime -framework AudioUnit
|