aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl/build.rules
blob: 3bdb7b58ce74d8de447103756b68ce6a68101257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Build settings for the SDL backend
MODULES  += backends/sdl
OBJS	 += backends/sdl/sdl.o
DEFINES  += -DUNIX
INCLUDES += `sdl-config --cflags`
LIBS     += `sdl-config --libs`

# Uncomment this (instead of the above) to activate the SDL with OpenGL output
# OBJS	   += backends/sdl/sdl_gl.o
# DEFINES  += -DUNIX
# INCLUDES += `sdl-config --cflags`
# LIBS     += `sdl-config --libs` -lGL

# Uncomment this in addition to the above if you compile on Mac OS X
DEFINES += -DMACOSX
LIBS	+= -framework QuickTime -framework AudioUnit