The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: Use version script in Meson build too.

+4
+4
src/xrt/targets/openxr/meson.build
··· 63 63 openxr_deps += [xcb_randr] 64 64 endif 65 65 66 + mapfile = 'libopenxr.version' 67 + version_script_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), mapfile) 66 68 openxr = library( 67 69 runtime_target, 68 70 files( ··· 91 93 ] + hack_incs, 92 94 dependencies: openxr_deps + driver_deps + hack_deps, 93 95 install: true, 96 + link_args: version_script_flag, 97 + link_depends: mapfile 94 98 ) 95 99 96 100 manifest_in = files('openxr_monado.in.json')