Audaspace: Buildsystem update after Ton destroyed building with scons and cmake, also including a patch by freakabcd fixing some missing python include paths.

This commit is contained in:
Joerg Mueller 2010-08-16 18:22:51 +00:00
parent db38a7f2cc
commit 8d7204ac04
5 changed files with 7 additions and 2 deletions

@ -63,7 +63,8 @@ ENDIF(WITH_SNDFILE)
IF(WITH_PYTHON)
SET(INC ${INC} Python ${PYTHON_INC})
FILE(GLOB PYTHONSRC Python/*.cpp)
ADD_DEFINITIONS(-DWITH_PYTHON)
ELSE(WITH_PYTHON)
ADD_DEFINITIONS(-DDISABLE_PYTHON)
ENDIF(WITH_PYTHON)
SET(SRC ${SRC} ${FFMPEGSRC} ${SNDFILESRC} ${FFTW3SRC} ${SDLSRC} ${OPENALSRC} ${JACKSRC} ${PYTHONSRC})

@ -39,7 +39,8 @@ if env['WITH_BF_SNDFILE']:
if env['WITH_BF_PYTHON']:
sources += env.Glob('Python/*.cpp')
incs += ' Python ' + env['BF_PYTHON_INC']
defs.append('WITH_PYTHON')
else:
defs.append('DISABLE_PYTHON')
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs += ' ' + env['BF_PTHREADS_INC']

@ -30,6 +30,7 @@ SET(INC
../../makesdna
../../makesrna
../../windowmanager
${PYTHON_INC}
)
BLENDERLIB(bf_editor_sound "${SRC}" "${INC}")

@ -30,6 +30,7 @@ SET(INC
../../makesrna
../../windowmanager
../../../../intern/audaspace/intern
${PYTHON_INC}
)
BLENDERLIB(bf_editor_space_graph "${SRC}" "${INC}")

@ -31,6 +31,7 @@ SET(INC
../../makesrna
../../windowmanager
../../../../intern/audaspace/intern
${PYTHON_INC}
)
BLENDERLIB(bf_editor_space_sequencer "${SRC}" "${INC}")