meson: rename libnir to _libnir to make it clear it's not meant to be used anywhere else

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
Eric Engestrom
2019-09-25 00:44:21 +01:00
parent 3e95b2773f
commit 7a1dc6ab44
+2 -2
View File
@@ -238,7 +238,7 @@ files_libnir = files(
'../spirv/vtn_variables.c',
)
libnir = static_library(
_libnir = static_library(
'nir',
[files_libnir, spirv_info_c, nir_opt_algebraic_c, nir_opcodes_c,
nir_opcodes_h, nir_constant_expressions_c, nir_builder_opcodes_h,
@@ -258,7 +258,7 @@ idep_nir_headers = declare_dependency(
# Also link with nir
idep_nir = declare_dependency(
dependencies : idep_nir_headers,
link_with : libnir,
link_with : _libnir,
)
nir_algebraic_py = files('nir_algebraic.py')