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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-22 21:01:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-22 21:01:54 +0400
commit29f279e43dfac8e1e08dbe272d7092eab5a8067d (patch)
treee423e36e35f59a8a95f7891e58679e64aa1b51e3 /source/blender/render/SConscript
parent1bdf652b89871614c38bf2146cf94522c3347e06 (diff)
Render API: add update_progress() function to update progress bar progress from
external render engines. Also refactoring to move some render engine registration stuff out of RNA and into render module.
Diffstat (limited to 'source/blender/render/SConscript')
-rw-r--r--source/blender/render/SConscript10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/render/SConscript b/source/blender/render/SConscript
index 4ec1ce3de6b..9c724187c27 100644
--- a/source/blender/render/SConscript
+++ b/source/blender/render/SConscript
@@ -16,6 +16,13 @@ defs_raytrace = []
defs.append('WITH_SMOKE') # TODO, make optional
+if env['WITH_BF_PYTHON']:
+ incs += ' ../python'
+ incs += ' ' + env['BF_PYTHON_INC']
+ defs.append('WITH_PYTHON')
+ if env['BF_DEBUG']:
+ defs.append('DEBUG')
+
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
if env['WITH_BF_RAYOPTIMIZATION']:
cflags_raytrace = env['CCFLAGS'] + env['BF_RAYOPTIMIZATION_SSE_FLAGS']
@@ -49,6 +56,9 @@ if env['WITH_BF_QUICKTIME']:
if env['WITH_BF_OPENEXR']:
defs.append('WITH_OPENEXR')
+if env['WITH_BF_GAMEENGINE']:
+ defs.append('WITH_GAMEENGINE')
+
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs += ' ' + env['BF_PTHREADS_INC']