xref: /aosp_15_r20/external/mesa3d/src/amd/vulkan/layers/meson.build (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1# Copyright © 2022 Valve Corporation
2# SPDX-License-Identifier: MIT
3
4radv_annotate_layer = custom_target(
5  'radv_annotate',
6  input : [files('radv_annotate_layer_gen.py'), vk_api_xml],
7  output : ['radv_annotate_layer.c'],
8  command : [
9    prog_python, '@INPUT0@', '--xml', '@INPUT1@',
10    '--out-c', '@OUTPUT0@',
11    '--beta', with_vulkan_beta.to_string(),
12  ],
13  depend_files : [files('radv_annotate_layer_gen.py'), vk_dispatch_table_gen_depend_files],
14)
15