mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
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:
parent
76e1588ca8
commit
7a4e15fdff
2 changed files with 18 additions and 0 deletions
4
src/etnaviv/isa/encode.c
Normal file
4
src/etnaviv/isa/encode.c
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
/*
|
||||||
|
* Copyright © 2024 Igalia S.L.
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
@ -56,6 +56,20 @@ enums_h = custom_target(
|
||||||
depend_files: isa_depend_files,
|
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(
|
disasm = executable(
|
||||||
'etnaviv-disasm',
|
'etnaviv-disasm',
|
||||||
['disasm.c'],
|
['disasm.c'],
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue