2019-09-24 13:43:43 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
|
|
project(
|
|
|
|
'xrt',
|
|
|
|
['c', 'cpp'],
|
|
|
|
version: '0.1.0',
|
|
|
|
license: 'BSL-1.0',
|
|
|
|
meson_version: '>=0.49.0',
|
|
|
|
default_options: [
|
|
|
|
'c_std=c11',
|
|
|
|
'warning_level=2',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
cpp = meson.get_compiler('cpp')
|
|
|
|
|
|
|
|
add_project_arguments(cc.get_supported_arguments([
|
|
|
|
'-D_XOPEN_SOURCE=700',
|
|
|
|
'-pedantic',
|
|
|
|
'-Wall',
|
|
|
|
'-Wextra',
|
|
|
|
'-Wno-unused-parameter',
|
|
|
|
]), language: 'c')
|
|
|
|
|
|
|
|
add_project_arguments(cpp.get_supported_arguments([
|
|
|
|
'-D_XOPEN_SOURCE=700',
|
|
|
|
'-Wall',
|
|
|
|
'-Wextra',
|
|
|
|
'-Wno-unused-parameter',
|
|
|
|
'-Wno-deprecated-copy', # Eigen
|
|
|
|
]), language: 'cpp')
|
|
|
|
|
2019-11-02 22:25:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Pre-setting these variables
|
|
|
|
#
|
|
|
|
|
|
|
|
build_tracking = false
|
|
|
|
|
|
|
|
v4l2_required = false
|
|
|
|
hidapi_required = false
|
|
|
|
openhmd_required = false
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Adding dependencies
|
|
|
|
#
|
|
|
|
|
2019-11-05 09:26:02 +00:00
|
|
|
# When docs are disabled, doxygen will always appear as "not found"
|
2019-11-02 22:29:45 +00:00
|
|
|
doxygen = find_program('doxygen', required: get_option('docs'))
|
2019-11-05 09:26:02 +00:00
|
|
|
build_docs = doxygen.found()
|
2019-11-02 22:29:45 +00:00
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
glslangValidator = find_program('glslangValidator')
|
|
|
|
|
2019-11-02 22:30:28 +00:00
|
|
|
pthreads = cc.find_library('pthread', required: true)
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
avcodec = dependency('libavcodec', required: false)
|
2020-01-14 18:21:23 +00:00
|
|
|
egl = dependency('egl', required: get_option('egl'))
|
2019-10-29 16:11:48 +00:00
|
|
|
egl = egl.partial_dependency(includes: true)
|
2019-09-24 13:43:43 +00:00
|
|
|
eigen3 = dependency('eigen3')
|
|
|
|
libjpeg = dependency('libjpeg', required: false)
|
|
|
|
libusb = dependency('libusb-1.0', required: false)
|
2020-01-14 18:21:23 +00:00
|
|
|
opengl = dependency('gl', required: get_option('opengl'))
|
2019-09-24 13:43:43 +00:00
|
|
|
sdl2 = dependency('sdl2', required: get_option('gui'))
|
|
|
|
udev = dependency('libudev', required: false)
|
|
|
|
libuvc = dependency('libuvc', required: false)
|
2020-01-14 18:21:23 +00:00
|
|
|
vulkan = dependency('vulkan', required: true)
|
2019-10-02 11:00:52 +00:00
|
|
|
zlib = dependency('zlib', required: false)
|
2019-09-24 13:43:43 +00:00
|
|
|
|
2019-09-29 11:22:03 +00:00
|
|
|
opencv = dependency('opencv4', required: false)
|
|
|
|
if not opencv.found()
|
|
|
|
opencv = dependency('opencv', required: get_option('tracking'))
|
|
|
|
endif
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
if get_option('tracking').enabled() or get_option('tracking').auto()
|
|
|
|
build_tracking = opencv.found()
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO: make these behave well when not present
|
2020-01-14 18:21:23 +00:00
|
|
|
x11 = dependency('x11', required: get_option('xlib'))
|
|
|
|
xcb = dependency('xcb', required: get_option('xcb'))
|
|
|
|
xcb_randr = dependency('xcb-randr', required: get_option('xcb'))
|
2019-09-19 20:27:56 +00:00
|
|
|
|
2020-01-14 18:21:23 +00:00
|
|
|
wayland = dependency('wayland-client', required: get_option('wayland'))
|
|
|
|
wayland_protos = dependency('wayland-protocols', required: get_option('wayland'))
|
|
|
|
wayland_scanner = dependency('wayland-scanner', required: get_option('wayland'))
|
2019-09-19 20:27:56 +00:00
|
|
|
|
|
|
|
if wayland_scanner.found()
|
|
|
|
wayland_scanner = find_program(
|
|
|
|
wayland_scanner.get_pkgconfig_variable('wayland_scanner'),
|
|
|
|
native: true,
|
|
|
|
)
|
|
|
|
endif
|
2019-09-24 13:43:43 +00:00
|
|
|
|
2020-01-14 18:21:23 +00:00
|
|
|
build_opengl = false
|
|
|
|
if get_option('opengl').enabled() or get_option('opengl').auto()
|
|
|
|
build_opengl = opengl.found()
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
build_egl = false
|
|
|
|
if get_option('egl').enabled() or get_option('egl').auto()
|
|
|
|
build_egl = opengl.found() and egl.found()
|
|
|
|
endif
|
|
|
|
|
|
|
|
build_xlib = false
|
|
|
|
if get_option('xlib').enabled() or get_option('xlib').auto()
|
|
|
|
build_xlib = x11.found()
|
|
|
|
endif
|
|
|
|
|
|
|
|
build_xcb = false
|
|
|
|
if get_option('xcb').enabled() or get_option('xcb').auto()
|
|
|
|
build_xcb = xcb.found()
|
|
|
|
endif
|
|
|
|
|
|
|
|
build_xcb_xrandr_direct = build_xcb and build_xlib and xcb_randr.found()
|
|
|
|
|
|
|
|
build_wayland = false
|
|
|
|
if get_option('wayland').enabled() or get_option('wayland').auto()
|
|
|
|
build_wayland = wayland.found() and wayland_protos.found() and wayland_scanner.found()
|
|
|
|
endif
|
|
|
|
|
2019-09-26 15:13:24 +00:00
|
|
|
# For now required on Linux
|
2019-09-26 15:30:52 +00:00
|
|
|
if target_machine.system() == 'linux'
|
2019-09-26 15:13:24 +00:00
|
|
|
v4l2_required = true
|
|
|
|
endif
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
drivers = get_option('drivers')
|
|
|
|
if 'ohmd' in drivers
|
|
|
|
openhmd_required = true
|
|
|
|
endif
|
2019-10-31 01:26:19 +00:00
|
|
|
if 'psvr' in drivers
|
2019-09-24 13:43:43 +00:00
|
|
|
hidapi_required = true
|
|
|
|
endif
|
|
|
|
if 'v4l2' in drivers
|
|
|
|
v4l2_required = true
|
|
|
|
endif
|
|
|
|
|
|
|
|
if 'auto' in drivers
|
2019-10-31 01:26:19 +00:00
|
|
|
drivers += ['psmv', 'hydra', 'hdk']
|
2019-09-24 13:43:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
openhmd = dependency('openhmd', required: openhmd_required)
|
2019-09-26 20:51:05 +00:00
|
|
|
hidapi = dependency('hidapi-libusb', required: hidapi_required)
|
2019-09-24 13:43:43 +00:00
|
|
|
v4l2 = dependency('libv4l2', required: v4l2_required)
|
|
|
|
|
|
|
|
if openhmd.found() and ('auto' in drivers or 'ohmd' in drivers)
|
|
|
|
if 'ohmd' not in drivers
|
|
|
|
drivers += ['ohmd']
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if hidapi.found() and ('auto' in drivers or 'psvr' in drivers or 'hdk' in drivers)
|
|
|
|
if 'psvr' not in drivers
|
|
|
|
drivers += ['psvr']
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-10-02 11:00:52 +00:00
|
|
|
if zlib.found() and ('auto' in drivers or 'vive' in drivers)
|
|
|
|
if 'vive' not in drivers
|
|
|
|
drivers += ['vive']
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
if v4l2.found() and ('auto' in drivers or 'v4l2' in drivers)
|
|
|
|
if 'v4l2' not in drivers
|
|
|
|
drivers += ['v4l2']
|
|
|
|
endif
|
2019-11-05 14:36:52 +00:00
|
|
|
add_project_arguments('-DXRT_HAVE_V4L2', language: ['c', 'cpp'])
|
2019-09-24 13:43:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if drivers.length() == 0 or drivers == ['auto']
|
|
|
|
error('You must enable at least one driver.')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if udev.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_LIBUDEV', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if libusb.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_LIBUSB', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if opencv.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_OPENCV', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if libjpeg.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_JPEG', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if libuvc.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_LIBUVC', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if avcodec.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_FFMPEG', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
|
|
|
if sdl2.found()
|
|
|
|
add_project_arguments('-DXRT_HAVE_SDL2', language: ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
|
2019-11-02 22:25:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Go down sub directories
|
|
|
|
#
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
subdir('src')
|
|
|
|
|
2019-11-02 22:25:31 +00:00
|
|
|
if build_docs
|
2019-09-24 13:43:43 +00:00
|
|
|
subdir('doc')
|
|
|
|
endif
|
|
|
|
|
2019-11-02 22:25:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Final bits
|
|
|
|
#
|
|
|
|
|
2019-09-24 13:43:43 +00:00
|
|
|
# This is here so that it gets emitted in the top-level build directory
|
|
|
|
manifest_devconf = configuration_data()
|
|
|
|
# https://github.com/mesonbuild/meson/issues/5940
|
|
|
|
manifest_devconf.set('runtime_path', openxr.full_path())
|
|
|
|
|
|
|
|
manifest_dev_json = configure_file(
|
|
|
|
input: manifest_in,
|
|
|
|
output: 'openxr_monado-dev.json',
|
|
|
|
configuration: manifest_devconf,
|
|
|
|
)
|
2019-11-02 22:25:31 +00:00
|
|
|
|
|
|
|
message('Configuration done!')
|
|
|
|
message(' drivers: ' + ', '.join(drivers))
|
|
|
|
|
|
|
|
if build_docs
|
|
|
|
message(' docs: yes')
|
|
|
|
else
|
|
|
|
message(' docs: no')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if build_tracking
|
|
|
|
message(' tracking: yes')
|
|
|
|
else
|
|
|
|
message(' tracking: no')
|
|
|
|
endif
|