Difference between revisions of "BuildingWithOpenAL"

From SfzWiki
Jump to: navigation, search
 
 
(4 intermediate revisions by one user not shown)
Line 1: Line 1:
you can also try  using openal instead of fmod,  
+
you can also try  using openal instead of fmod, to do that :
to do that  
+
  
delete lugre/src/lugre_sound_fmod.cpp (so scons doesn't try to compile it) ,
+
run "scons SOUND_SYSTEM=openal" instead of just "scons"
 
+
edit lugre/src/lugre_sound.cpp 
+
 
+
and replace
+
 
+
#define USE_FMOD 1
+
//#define USE_OPENAL 1
+
 
+
by
+
 
+
//#define USE_FMOD 1
+
#define USE_OPENAL 1
+
 
+
and recompile
+

Latest revision as of 12:47, 25 August 2007

you can also try using openal instead of fmod, to do that :

run "scons SOUND_SYSTEM=openal" instead of just "scons"