--- /dev/null
+{
+ "file_format_version" : "1.0.0",
+ "layer" : {
+ "name": "VK_LAYER_MESA_overlay",
+ "type": "GLOBAL",
+ "library_path": "libVkLayer_MESA_overlay.so",
+ "api_version": "1.1.73",
+ "implementation_version": "1",
+ "description": "Mesa Overlay layer"
+ }
+}
+++ /dev/null
-{
- "file_format_version" : "1.0.0",
- "layer" : {
- "name": "VK_LAYER_MESA_overlay",
- "type": "GLOBAL",
- "library_path": "@install_dir@/libVkLayer_MESA_overlay.so",
- "api_version": "1.1.73",
- "implementation_version": "1",
- "description": "Mesa Overlay layer"
- }
-}
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-vklayer_install_dir = join_paths(get_option('prefix'), 'share', 'vulkan', 'explicit_layer.d')
-
glslang = find_program('glslangValidator')
overlay_shaders = [
include_directories : [inc_common, inc_vulkan_util],
link_args : cc.get_supported_link_arguments(['-Wl,-Bsymbolic-functions', '-Wl,-z,relro']),
link_with : [libmesa_util, libvulkan_util],
- install_dir : vklayer_install_dir,
install : true
)
-sdata = configuration_data()
-sdata.set('install_dir', vklayer_install_dir)
-
-configure_file(
- input : 'VkLayer_MESA_overlay.json.in',
- output : '@BASENAME@',
- configuration : sdata,
- install_dir : vklayer_install_dir,
- install : true
+install_data(
+ files('VkLayer_MESA_overlay.json'),
+ install_dir : join_paths(get_option('datadir'), 'vulkan', 'explicit_layer.d'),
)