meson: add missing dependency on generated git_sha1.h

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8121>
This commit is contained in:
Michael Forney 2020-12-16 00:48:25 -08:00 committed by Marge Bot
parent 818031afd1
commit 434da21a7c
3 changed files with 4 additions and 3 deletions

View file

@ -27,6 +27,7 @@ libfreedreno_common = static_library(
'freedreno_uuid.c',
'freedreno_uuid.h',
'freedreno_guardband.h',
sha1_h,
],
include_directories : [inc_freedreno, inc_include, inc_src, inc_gallium],
c_args : [no_override_init_args],

View file

@ -57,7 +57,7 @@ endif
liblavapipe_st = static_library(
'lavapipe_st',
[liblvp_files, lvp_entrypoints, lvp_extensions_c ],
[liblvp_files, lvp_entrypoints, lvp_extensions_c, sha1_h],
link_with : [ libvulkan_wsi ],
c_args : [ lvp_flags ],
gnu_symbol_visibility : 'hidden',

View file

@ -42,8 +42,8 @@ files_libintel_common = files(
)
libintel_common = static_library(
['intel_common', genX_xml_h],
files_libintel_common,
'intel_common',
[files_libintel_common, genX_xml_h, sha1_h],
include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_intel],
c_args : [no_override_init_args],
gnu_symbol_visibility : 'hidden',