Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/SoundSystem/SConscript')
-rw-r--r--intern/SoundSystem/SConscript7
1 files changed, 5 insertions, 2 deletions
diff --git a/intern/SoundSystem/SConscript b/intern/SoundSystem/SConscript
index 6ff02ba68a2..81bbc2146f2 100644
--- a/intern/SoundSystem/SConscript
+++ b/intern/SoundSystem/SConscript
@@ -24,12 +24,15 @@ soundsys_env.Append (CPPPATH = ['.',
'../moto/include',
'../string',
'dummy',
- 'openal'])
+ 'openal',
+ 'sdl'])
if user_options_dict['USE_OPENAL'] == 1:
source_files += ['openal/SND_OpenALDevice.cpp',
- 'openal/pthread_cancel.cpp']
+ 'openal/pthread_cancel.cpp',
+ 'sdl/SND_SDLCDDevice.cpp']
soundsys_env.Append (CPPPATH=user_options_dict['OPENAL_INCLUDE'])
+ soundsys_env.Append (CPPPATH=user_options_dict['SDL_INCLUDE'])
if user_options_dict['USE_FMOD'] == 1:
source_files += ['fmod/SND_FmodDevice.cpp']