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:
authorThomas Dinges <blender@dingto.org>2012-07-01 02:44:36 +0400
committerThomas Dinges <blender@dingto.org>2012-07-01 02:44:36 +0400
commit273f56ace03e1556df17b8a6e7e4343bf73726e5 (patch)
treea24dacba155ccc946433cdfbcc73bd89be0bdc06 /source/blender/SConscript
parent2932cded40948c6d551a7187b4b5c76676eca1a2 (diff)
Scons:
* WITH_BF_COMPOSITOR option, to disable tile compositor compilation. * Removed unused SCons file.
Diffstat (limited to 'source/blender/SConscript')
-rw-r--r--source/blender/SConscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/SConscript b/source/blender/SConscript
index c2ca6eb5ae5..e1f81f9aaba 100644
--- a/source/blender/SConscript
+++ b/source/blender/SConscript
@@ -8,11 +8,9 @@ SConscript(['avi/SConscript',
'blenlib/SConscript',
'blenloader/SConscript',
'gpu/SConscript',
- 'opencl/SConscript',
'editors/SConscript',
'imbuf/SConscript',
'makesdna/SConscript',
- 'compositor/SConscript',
'render/SConscript',
'nodes/SConscript',
'modifiers/SConscript',
@@ -39,3 +37,7 @@ if env['WITH_BF_QUICKTIME']:
if env['WITH_BF_COLLADA']:
SConscript (['collada/SConscript'])
+
+if env['WITH_BF_COMPOSITOR']:
+ SConscript (['compositor/SConscript',
+ 'opencl/SConscript'])