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:
Diffstat (limited to 'tools/btools.py')
-rwxr-xr-xtools/btools.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/btools.py b/tools/btools.py
index d5cc8a543b4..556cb9b901a 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -76,7 +76,8 @@ def validate_arguments(args, bc):
'WITH_BF_FHS',
'BF_VERSION',
'BF_GHOST_DEBUG',
- 'WITH_BF_RAYOPTIMIZATION'
+ 'WITH_BF_RAYOPTIMIZATION',
+ 'BF_RAYOPTIMIZATION_SSE_FLAGS'
]
# Have options here that scons expects to be lists
@@ -423,7 +424,9 @@ def read_opts(cfg, args):
(BoolVariable('BF_UNIT_TEST', 'Build with unit test support.', False)),
(BoolVariable('BF_GHOST_DEBUG', 'Make GHOST print events and info to stdout. (very verbose)', False)),
- (BoolVariable('WITH_BF_RAYOPTIMIZATION', 'Enable raytracer SSE/SIMD optimization.', False))
+
+ (BoolVariable('WITH_BF_RAYOPTIMIZATION', 'Enable raytracer SSE/SIMD optimization.', False)),
+ ('BF_RAYOPTIMIZATION_SSE_FLAGS', 'SSE flags', '')
) # end of opts.AddOptions()
return localopts