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:
authorJoerg Mueller <nexyon@gmail.com>2010-07-09 16:35:40 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-07-09 16:35:40 +0400
commit9772eb4d5f7e6e8388b835f8293dececc990bbd3 (patch)
treebd8445507decdadb2fca5152fbc8018eab0b7384 /intern/audaspace/SConscript
parent5460994095345ff77da42868ccf8f3d90c1733f0 (diff)
Audaspace:
* Renamed AUD_Handle to AUD_Channel in the C-API to prevent errors with the C++ version of AUD_Handle. * Added Python API!!!
Diffstat (limited to 'intern/audaspace/SConscript')
-rw-r--r--intern/audaspace/SConscript5
1 files changed, 5 insertions, 0 deletions
diff --git a/intern/audaspace/SConscript b/intern/audaspace/SConscript
index bbd2442c480..35c457aad4e 100644
--- a/intern/audaspace/SConscript
+++ b/intern/audaspace/SConscript
@@ -36,6 +36,11 @@ if env['WITH_BF_FFTW3']:
incs += ' fftw ' + env['BF_FFTW3_INC']
defs.append('WITH_FFTW3')
+if env['WITH_BF_PYTHON']:
+ sources += env.Glob('Python/*.cpp')
+ incs += ' Python ' + env['BF_PYTHON_INC']
+ defs.append('WITH_PYTHON')
+
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs += ' ' + env['BF_PTHREADS_INC']