From: Lionel Landwerlin Date: Tue, 26 Feb 2019 23:23:03 +0000 (+0000) Subject: vulkan/overlay: install layer binary in libdir X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fff5966d661346378fe51bba74af5b0eb2db303;p=mesa.git vulkan/overlay: install layer binary in libdir This will allow multilib. v2: Drop path from json file, dlopen should be able to locate the lib in libdir v3: Switch from configure_file to install_data (Dylan) Signed-off-by: Lionel Landwerlin Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109788 Tested-by: Mike Lothian Reviewed-by: Eric Engestrom --- diff --git a/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json b/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json new file mode 100644 index 00000000000..6877c3a3ecd --- /dev/null +++ b/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json.in b/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json.in deleted file mode 100644 index 5a9a88a9841..00000000000 --- a/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json.in +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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" - } -} diff --git a/src/vulkan/overlay-layer/meson.build b/src/vulkan/overlay-layer/meson.build index 9d1bc97c131..d2cdee2d6bb 100644 --- a/src/vulkan/overlay-layer/meson.build +++ b/src/vulkan/overlay-layer/meson.build @@ -18,8 +18,6 @@ # 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 = [ @@ -47,17 +45,10 @@ vklayer_mesa_overlay = shared_library( 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'), )