mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 16:00:24 +01:00
gallium: Add pipe wrapper software winsys to scons build
This commit is contained in:
parent
bb7205895e
commit
8ff59f0987
2 changed files with 26 additions and 0 deletions
|
|
@ -1,5 +1,10 @@
|
|||
Import('*')
|
||||
|
||||
|
||||
SConscript([
|
||||
'sw/wrapper/SConscript',
|
||||
])
|
||||
|
||||
if 'xlib' in env['winsys']:
|
||||
SConscript([
|
||||
'sw/xlib/SConscript',
|
||||
|
|
|
|||
21
src/gallium/winsys/sw/wrapper/SConscript
Normal file
21
src/gallium/winsys/sw/wrapper/SConscript
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#######################################################################
|
||||
# SConscript for xlib winsys
|
||||
|
||||
|
||||
Import('*')
|
||||
|
||||
env = env.Clone()
|
||||
|
||||
env.Append(CPPPATH = [
|
||||
'#/src/gallium/include',
|
||||
'#/src/gallium/auxiliary',
|
||||
'#/src/gallium/drivers',
|
||||
])
|
||||
|
||||
ws_wrapper = env.ConvenienceLibrary(
|
||||
target = 'ws_wrapper',
|
||||
source = [
|
||||
'wrapper_sw_winsys.c',
|
||||
]
|
||||
)
|
||||
Export('ws_wrapper')
|
||||
Loading…
Add table
Reference in a new issue