mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-23 23:21:46 +00:00
73 lines
1.3 KiB
Meson
73 lines
1.3 KiB
Meson
# Copyright 2019-2020, Collabora, Ltd.
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
###
|
|
# Main code
|
|
#
|
|
|
|
compile_args = []
|
|
if build_opengl
|
|
compile_args += ['-DXR_USE_GRAPHICS_API_OPENGL']
|
|
endif
|
|
|
|
if build_opengles
|
|
compile_args += ['-DXR_USE_GRAPHICS_API_OPENGL_ES']
|
|
endif
|
|
|
|
if build_egl
|
|
compile_args += ['-DXR_USE_PLATFORM_EGL']
|
|
endif
|
|
|
|
if build_xlib
|
|
compile_args += ['-DXR_USE_PLATFORM_XLIB']
|
|
endif
|
|
|
|
lib_st_oxr = static_library(
|
|
'st_oxr',
|
|
[
|
|
'oxr_api_action.c',
|
|
'oxr_api_funcs.h',
|
|
'oxr_api_instance.c',
|
|
'oxr_api_negotiate.c',
|
|
'oxr_api_session.c',
|
|
'oxr_api_space.c',
|
|
'oxr_api_swapchain.c',
|
|
'oxr_api_system.c',
|
|
'oxr_api_verify.h',
|
|
'oxr_binding.c',
|
|
'oxr_chain.h',
|
|
'oxr_event.c',
|
|
'oxr_extension_support.h',
|
|
'oxr_handle_base.c',
|
|
'oxr_input.c',
|
|
'oxr_input_transform.c',
|
|
'oxr_input_transform.h',
|
|
'oxr_instance.c',
|
|
'oxr_logger.c',
|
|
'oxr_logger.h',
|
|
'oxr_objects.h',
|
|
'oxr_path.c',
|
|
'oxr_session.c',
|
|
'oxr_session_frame_end.c',
|
|
'oxr_session_gfx_gl.c',
|
|
'oxr_session_gfx_egl.c',
|
|
'oxr_session_gfx_vk.c',
|
|
'oxr_space.c',
|
|
'oxr_swapchain.c',
|
|
'oxr_swapchain_gl.c',
|
|
'oxr_swapchain_vk.c',
|
|
'oxr_system.c',
|
|
'oxr_two_call.h',
|
|
'oxr_verify.c',
|
|
'oxr_vulkan.c',
|
|
'oxr_xdev.c',
|
|
],
|
|
include_directories: [
|
|
xrt_include,
|
|
openxr_include,
|
|
],
|
|
dependencies: [aux, vulkan],
|
|
c_args: compile_args,
|
|
cpp_args: compile_args,
|
|
)
|