1# Copyright © 2022 Imagination Technologies Ltd. 2# SPDX-License-Identifier: MIT 3 4# FIXME: Remove idep_vulkan_runtime once 5# the compiler/driver interface is finalised. 6rogue_compiler = executable( 7 'rogue_vk_compiler', 8 'vk_compiler.c', 9 link_with : [libpowervr_rogue], 10 dependencies : [idep_mesautil, idep_nir, idep_vulkan_runtime, dep_csbgen], 11 include_directories : [ 12 inc_imagination, 13 inc_include, 14 inc_src, 15 inc_rogue, 16 ], 17 c_args : [imagination_c_args], 18 build_by_default : with_imagination_tools, 19 install : false, 20) 21