mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-16 04:20:34 +01:00
16 lines
301 B
Python
16 lines
301 B
Python
Import('*')
|
|
|
|
pipebuffer = env.ConvenienceLibrary(
|
|
target = 'pipebuffer',
|
|
source = [
|
|
'pb_buffer_fenced.c',
|
|
'pb_buffer_malloc.c',
|
|
'pb_bufmgr_cache.c',
|
|
'pb_bufmgr_fenced.c',
|
|
'pb_bufmgr_mm.c',
|
|
'pb_bufmgr_pool.c',
|
|
'pb_bufmgr_slab.c',
|
|
'pb_winsys.c',
|
|
])
|
|
|
|
auxiliaries.insert(0, pipebuffer)
|