mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 17:28:09 +02:00
The following commit needs to use it from panfrost/compiler. But compiler depends itself on panfrost/lib. Reviewed-by: Eric R. Smith <eric.smith@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37231>
24 lines
568 B
Meson
24 lines
568 B
Meson
# Copyright © 2018 Rob Clark
|
|
# Copyright © 2019 Collabora
|
|
# Copyright © 2025 Arm Ltd.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
libpanfrost_model_files = files(
|
|
'pan_model.h',
|
|
'pan_model.c',
|
|
)
|
|
|
|
libpanfrost_model_lib = static_library(
|
|
'panfrost_model_lib',
|
|
[libpanfrost_model_files],
|
|
include_directories : [inc_src],
|
|
c_args : [no_override_init_args],
|
|
gnu_symbol_visibility : 'hidden',
|
|
build_by_default : false,
|
|
)
|
|
|
|
libpanfrost_model_dep = declare_dependency(
|
|
link_with: [libpanfrost_model_lib],
|
|
include_directories: [inc_include, inc_src, inc_panfrost],
|
|
)
|