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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-10-31 23:05:24 +0300
committerMaxime Curioni <maxime.curioni@gmail.com>2008-10-31 23:05:24 +0300
commit1db8ac58a31b43f1286ca640c939edbfee88a51d (patch)
tree940911ce8f55d0db96f9b5fafeb42480297a18f8 /source/blender/python/SConscript
parent911926110baf5b470b4cc06c0be09e3ccfb3934e (diff)
parent027d86b9ff5a4f7b859b28e33d3d40f264a4e55b (diff)
soc-2008-mxcurioni: merged changes to revision 17246
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index cb33f8437f1..7f8dd0e1227 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -1,7 +1,7 @@
#!/usr/bin/python
Import ('env')
-sources = Split('BPY_interface.c BPY_menus.c') + env.Glob('api2_2x/*.c')
+sources = env.Glob('*.c') + env.Glob('api2_2x/*.c')
incs = 'api2_2x ../blenkernel ../nodes ../blenlib ../blenloader'
incs += ' ../render/extern/include ../radiosity/extern/include ../freestyle/intern/python'
@@ -14,17 +14,17 @@ defs = []
if env['OURPLATFORM'] in ('win32-mingw') and env['BF_DEBUG']:
defs.append('Py_TRACE_REFS')
-if env['WITH_BF_QUICKTIME']==1:
+if env['WITH_BF_QUICKTIME']:
incs += ' ' + env['BF_QUICKTIME_INC']
defs.append('WITH_QUICKTIME')
-if env['WITH_BF_OPENEXR'] == 1:
+if env['WITH_BF_OPENEXR']:
defs.append('WITH_OPENEXR')
-if env['WITH_BF_FFMPEG'] == 1:
+if env['WITH_BF_FFMPEG']:
defs.append('WITH_FFMPEG')
-if env['BF_BUILDINFO'] == 1:
+if env['BF_BUILDINFO']:
defs.append('NAN_BUILDINFO')
env.BlenderLib ( libname='blender_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype=['core','game2'], priority = [60,115] )