From: George Kyriazis Date: Wed, 16 Nov 2016 00:52:39 +0000 (-0600) Subject: scons: Add swr compile option X-Git-Tag: upstream/17.1.0~4511 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9085f1a9ccdfdfbdd470c871335edf360cf56c58;p=platform%2Fupstream%2Fmesa.git scons: Add swr compile option To buils The SWR driver (currently optional, not compiled by default) v3: add option as opposed to target Reviewed-by: Emil Velikov --- diff --git a/common.py b/common.py index fb0884e..704ad2e 100644 --- a/common.py +++ b/common.py @@ -110,5 +110,6 @@ def AddOptions(opts): opts.Add(BoolOption('texture_float', 'enable floating-point textures and renderbuffers', 'no')) + opts.Add(BoolOption('swr', 'Build OpenSWR', 'no')) if host_platform == 'windows': opts.Add('MSVC_VERSION', 'Microsoft Visual C/C++ version')