mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 23:40:33 +01:00
freedreno/ir3: fix standalone compiler meson build
Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
86154acb57
commit
fecd04a66a
1 changed files with 13 additions and 3 deletions
|
|
@ -212,7 +212,17 @@ ir3_compiler = executable(
|
||||||
'ir3_compiler',
|
'ir3_compiler',
|
||||||
'ir3/ir3_cmdline.c',
|
'ir3/ir3_cmdline.c',
|
||||||
include_directories : freedreno_includes,
|
include_directories : freedreno_includes,
|
||||||
dependencies : [dep_libdrm, dep_libdrm_freedreno],
|
dependencies : [
|
||||||
link_with : [libfreedreno, libgallium, libmesa_util],
|
dep_libdrm,
|
||||||
build_by_default : false,
|
dep_libdrm_freedreno,
|
||||||
|
dependency('threads'),
|
||||||
|
],
|
||||||
|
link_with : [
|
||||||
|
libfreedreno,
|
||||||
|
libgallium,
|
||||||
|
libnir,
|
||||||
|
libglsl_standalone,
|
||||||
|
libmesa_util,
|
||||||
|
],
|
||||||
|
build_by_default : true,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue