mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
meson: Add dependency on genxml to anvil
Currently the Intel "anvil" driver races with the generation of genxml files, while i965 has an explicit dependency. This patch adds the same dependency to anvil. Fixes:d1992255bb("meson: Add build Intel "anv" vulkan driver") Acked-by: Jason Ekstrand <jason@jlekstrand.net> Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> (cherry picked from commit279060cd32)
This commit is contained in:
parent
4aa92b54e5
commit
d000488c2e
1 changed files with 5 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2017-2018 Intel Corporation
|
||||
# Copyright © 2017-2019 Intel Corporation
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
@ -176,7 +176,10 @@ endif
|
|||
|
||||
libanv_common = static_library(
|
||||
'anv_common',
|
||||
[libanv_files, anv_entrypoints, anv_extensions_c, anv_extensions_h, sha1_h],
|
||||
[
|
||||
libanv_files, anv_entrypoints, anv_extensions_c, anv_extensions_h, sha1_h,
|
||||
gen_xml_pack,
|
||||
],
|
||||
include_directories : [
|
||||
inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
|
||||
inc_vulkan_wsi,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue