meson: extract out variable for nir_algebraic.py

Also needed in freedreno/ir3.

Signed-off-by: Rob Clark <robdclark@gmail.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
Rob Clark 2017-10-24 11:07:52 -04:00
parent 0ca8d53215
commit 2207af032b
2 changed files with 3 additions and 1 deletions

View File

@ -193,6 +193,8 @@ libnir = static_library(
build_by_default : false,
)
nir_algebraic_py = files('nir_algebraic.py')
if with_tests
nir_control_flow_test = executable(
'nir_control_flow_test',

View File

@ -122,7 +122,7 @@ brw_nir_trig = custom_target(
output : 'brw_nir_trig_workarounds.c',
command : [prog_python2, '@INPUT@', '-p',
join_paths(meson.source_root(), 'src/compiler/nir/')],
depend_files : files('../../compiler/nir/nir_algebraic.py'),
depend_files : nir_algebraic_py,
capture : true,
)