2019-09-24 13:43:43 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
|
|
######
|
|
|
|
# Create a loadable OpenXR driver.
|
|
|
|
|
|
|
|
# runtime_bare_suffix = 'xrt'
|
|
|
|
# runtime_prefix = runtime_bare_prefix + '_'
|
|
|
|
runtime_prefix = ''
|
|
|
|
|
|
|
|
runtime_bare_suffix = 'monado'
|
|
|
|
runtime_suffix = '_' + runtime_bare_suffix
|
|
|
|
|
|
|
|
runtime_target = '@0@openxr@1@'.format(runtime_prefix, runtime_suffix)
|
|
|
|
|
|
|
|
# OpenXR 1.0
|
|
|
|
xr_api_major = 1
|
|
|
|
|
|
|
|
openxr = library(
|
|
|
|
runtime_target,
|
|
|
|
files('target.c'),
|
|
|
|
link_whole: [
|
|
|
|
lib_aux_os,
|
2019-10-09 15:39:38 +00:00
|
|
|
lib_aux_ogl,
|
2019-09-24 13:43:43 +00:00
|
|
|
lib_aux_util,
|
|
|
|
lib_aux_math,
|
|
|
|
lib_comp,
|
|
|
|
lib_st_oxr,
|
|
|
|
lib_st_prober,
|
|
|
|
lib_target_lists,
|
|
|
|
] + driver_libs,
|
|
|
|
include_directories: [
|
|
|
|
aux_include,
|
|
|
|
common_include,
|
|
|
|
drv_include,
|
|
|
|
xrt_include,
|
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
libusb,
|
|
|
|
libuvc,
|
|
|
|
opengl,
|
|
|
|
pthreads,
|
|
|
|
targets_enabled,
|
|
|
|
udev,
|
|
|
|
vulkan,
|
|
|
|
x11,
|
|
|
|
xcb,
|
|
|
|
xcb_randr,
|
|
|
|
] + driver_deps,
|
|
|
|
install: true,
|
|
|
|
)
|
|
|
|
|
|
|
|
manifest_in = files('openxr_monado.meson.in.json')
|
|
|
|
|
|
|
|
manifest_conf = configuration_data()
|
|
|
|
# https://github.com/mesonbuild/meson/issues/5941
|
|
|
|
sopath = join_paths(get_option('prefix'),
|
|
|
|
get_option('libdir'), 'libopenxr_monado.so')
|
|
|
|
manifest_conf.set('runtime_path', sopath)
|
|
|
|
|
|
|
|
manifest_path = join_paths(
|
|
|
|
get_option('prefix'), get_option('datadir'), xr_api_major.to_string())
|
|
|
|
|
2019-09-28 13:23:12 +00:00
|
|
|
manifest_json = configure_file(
|
|
|
|
input: manifest_in,
|
|
|
|
output: 'openxr_monado.json',
|
|
|
|
configuration: manifest_conf,
|
|
|
|
install_dir: manifest_path,
|
|
|
|
)
|
2019-09-24 13:43:43 +00:00
|
|
|
|
|
|
|
meson.add_install_script('install_active_runtime.sh', get_option('sysconfdir'),
|
|
|
|
join_paths(manifest_path, runtime_target + '.json'), xr_api_major.to_string())
|