- Added the SConscripts for ftfont and quicktime

- [win32] python_include was missing, there was a double python_libpath. Corrected
- [win32] the soundsystem SConscript broke the win32 build.
This commit is contained in:
Nathan Letwory
2004-01-05 18:17:23 +00:00
parent a017282b62
commit a66108134c
4 changed files with 56 additions and 3 deletions

View File

@@ -13,7 +13,6 @@ Import ('extra_includes')
soundsys_env.Append (CCFLAGS = cflags)
soundsys_env.Append (CXXFLAGS = cxxflags)
soundsys_env.Append (CPPDEFINES = defines)
source_files = ['dummy/SND_DummyDevice.cpp',
'intern/SND_AudioDevice.cpp',
@@ -39,7 +38,9 @@ if use_openal == 'true':
source_files += ['openal/SND_OpenALDevice.cpp',
'openal/pthread_cancel.cpp']
if sys.platform=='win32':
cflags += ' /D_LIB'
defines += ['_LIB']
soundsys_env.Append(CPPDEFINES = defines)
if use_fmod == 'true':
source_files += ['fmod/SND_FmodDevice.cpp']