mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 17:20:10 +01:00
Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
import common
|
|
|
|
Import('*')
|
|
|
|
from sys import executable as python_cmd
|
|
|
|
env = env.Clone()
|
|
|
|
env.MSVC2013Compat()
|
|
|
|
env.Prepend(CPPPATH = [
|
|
'#include',
|
|
'#src',
|
|
'#src/mapi',
|
|
'#src/mesa',
|
|
'#src/gallium/include',
|
|
'#src/gallium/auxiliary',
|
|
'#src/util',
|
|
])
|
|
|
|
env.CodeGenerate(
|
|
target = 'format_srgb.c',
|
|
script = 'format_srgb.py',
|
|
source = [],
|
|
command = python_cmd + ' $SCRIPT > $TARGET'
|
|
)
|
|
|
|
# parse Makefile.sources
|
|
source_lists = env.ParseSourceList('Makefile.sources')
|
|
|
|
mesautil_sources = (
|
|
source_lists['MESA_UTIL_FILES'] +
|
|
source_lists['MESA_UTIL_GENERATED_FILES']
|
|
)
|
|
|
|
# XXX We don't yet have scons support for detecting any of the various
|
|
# HAVE_SHA1_* definitions, so for now simply disable the shader cache.
|
|
if False:
|
|
mesautil_sources += source_lists['MESA_UTIL_SHADER_CACHE_FILES']
|
|
|
|
mesautil = env.ConvenienceLibrary(
|
|
target = 'mesautil',
|
|
source = mesautil_sources,
|
|
)
|
|
|
|
env.Alias('mesautil', mesautil)
|
|
Export('mesautil')
|
|
|
|
|
|
# http://www.scons.org/wiki/UnitTests
|
|
u_atomic_test = env.Program(
|
|
target = 'u_atomic_test',
|
|
source = ['u_atomic_test.c'],
|
|
)
|
|
alias = env.Alias("u_atomic_test", u_atomic_test, u_atomic_test[0].abspath)
|
|
AlwaysBuild(alias)
|
|
|
|
roundeven_test = env.Program(
|
|
target = 'roundeven_test',
|
|
source = ['roundeven_test.c'],
|
|
)
|
|
alias = env.Alias("roundeven_test", roundeven_test, roundeven_test[0].abspath)
|
|
AlwaysBuild(alias)
|