etnaviv: isa: Add an empty libetnaviv_encode

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28183>
This commit is contained in:
Christian Gmeiner 2024-02-26 10:16:24 +01:00 committed by Marge Bot
parent 76e1588ca8
commit 7a4e15fdff
2 changed files with 18 additions and 0 deletions

4
src/etnaviv/isa/encode.c Normal file
View file

@ -0,0 +1,4 @@
/*
* Copyright © 2024 Igalia S.L.
* SPDX-License-Identifier: MIT
*/

View file

@ -56,6 +56,20 @@ enums_h = custom_target(
depend_files: isa_depend_files,
)
encode_files = [
enums_h,
'encode.c',
]
libetnaviv_encode = static_library(
'etnaviv_encode',
encode_files,
gnu_symbol_visibility: 'hidden',
include_directories: [
inc_src,
],
)
disasm = executable(
'etnaviv-disasm',
['disasm.c'],