Skip to content

Commit

Permalink
USE_SDL_SOUND flag (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonischranz authored Apr 29, 2021
1 parent cabd337 commit c5986f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ BUILD_GAME_SO =0
BUILD_GAME_QVM =0
OPTIMIZE =1
USE_SDL =1
USE_SDL_SOUND =0
USE_OPENAL =0
USE_CURL =1
USE_CODEC_VORBIS =0
Expand Down Expand Up @@ -531,6 +532,10 @@ ifeq ($(PLATFORM),freebsd)
VORBIS_LIBS=$(shell pkg-config --silence-errors --libs vorbis vorbisfile)
endif

ifeq ($(USE_SDL_SOUND), 1)
SDL_CFLAGS += -DUSE_SDL_SOUND
endif

USE_SDL = 1

ifndef HOMEPATH
Expand Down

0 comments on commit c5986f0

Please sign in to comment.