16 lines
526 B
Text
16 lines
526 B
Text
# 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
|