mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 16:48:13 +02:00
To be used by ACO tests. Need to remove gnu_symbol_visibility for exporting the symbol. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38536>
28 lines
745 B
Meson
28 lines
745 B
Meson
# Copyright © 2021 Emma Anholt
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
libradeon_noop_drm_shim = shared_library(
|
|
'radeon_noop_drm_shim',
|
|
'radeon_noop_drm_shim.c',
|
|
include_directories: [inc_include, inc_src, inc_amd],
|
|
dependencies: dep_drm_shim,
|
|
gnu_symbol_visibility : 'hidden',
|
|
install : true,
|
|
)
|
|
|
|
libamdgpu_noop_drm_shim = shared_library(
|
|
'amdgpu_noop_drm_shim',
|
|
['amdgpu_noop_drm_shim.c', 'amdgpu_devices.c'],
|
|
include_directories: [inc_include, inc_src, inc_amd],
|
|
dependencies: dep_drm_shim,
|
|
install : true,
|
|
)
|
|
|
|
amdgpu_dump = executable(
|
|
'amdgpu_dump_states',
|
|
'amdgpu_dump_states.c',
|
|
include_directories: [inc_include, inc_src, inc_amd],
|
|
gnu_symbol_visibility: 'hidden',
|
|
dependencies: [dep_libdrm],
|
|
install: false,
|
|
)
|