mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
f3b4f38892
svn-id: r4813
18 lines
532 B
Plaintext
18 lines
532 B
Plaintext
# 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
|