mesa/src/intel/nullhw-layer/meson.build
David Heidelberg 68215332a8 build: pass licensing information in SPDX form
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Acked-by: Dylan Baker <dylan.c.baker@intel.com>
Acked-by: Eric Engestrom <eric@igalia.com>
Acked-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: David Heidelberg <david@ixit.cz>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29972>
2024-06-29 12:42:49 -07:00

22 lines
660 B
Meson

# Copyright © 2019 Intel Corporation
# SPDX-License-Identifier: MIT
vklayer_intel_nullhw_files = files(
'intel_nullhw.c',
)
vklayer_intel_nullhw = shared_library(
'VkLayer_INTEL_nullhw',
vklayer_intel_nullhw_files,
c_args : [no_override_init_args],
dependencies : [idep_vulkan_util, idep_mesautil, vulkan_wsi_deps, dep_dl],
include_directories : [inc_include, inc_src],
link_args : cc.get_supported_link_arguments(['-Wl,-Bsymbolic-functions', '-Wl,-z,relro']),
install : true
)
install_data(
files('VkLayer_INTEL_nullhw.json'),
install_dir : join_paths(get_option('datadir'), 'vulkan', 'explicit_layer.d'),
install_tag : 'runtime',
)