mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 20:30:25 +01:00
15 lines
326 B
Text
15 lines
326 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
from sys import executable as python_cmd
|
||
|
|
|
||
|
|
LOCALEDIR = env.Dir('.').srcnode().abspath
|
||
|
|
|
||
|
|
xmlpool_options, = env.CodeGenerate(
|
||
|
|
target = 'options.h',
|
||
|
|
script = 'gen_xmlpool.py',
|
||
|
|
source = ['t_options.h'],
|
||
|
|
command = python_cmd + ' $SCRIPT $SOURCE ' + LOCALEDIR + ' > $TARGET'
|
||
|
|
)
|
||
|
|
|
||
|
|
Export('xmlpool_options')
|