2019-09-24 13:43:43 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
|
|
lib_st_oxr = static_library(
|
|
|
|
'st_oxr',
|
|
|
|
files(
|
|
|
|
'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',
|
2019-10-08 14:28:15 +00:00
|
|
|
'oxr_event.c',
|
2019-09-24 13:43:43 +00:00
|
|
|
'oxr_extension_support.h',
|
|
|
|
'oxr_handle_base.c',
|
|
|
|
'oxr_input.c',
|
|
|
|
'oxr_instance.c',
|
|
|
|
'oxr_logger.cpp',
|
|
|
|
'oxr_logger.h',
|
|
|
|
'oxr_objects.h',
|
|
|
|
'oxr_path.c',
|
|
|
|
'oxr_session.c',
|
|
|
|
'oxr_session_gl.c',
|
|
|
|
'oxr_session_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.cpp',
|
|
|
|
'oxr_vulkan.c',
|
|
|
|
'oxr_xdev.c',
|
|
|
|
),
|
|
|
|
include_directories: [
|
|
|
|
xrt_include,
|
|
|
|
external_include,
|
|
|
|
],
|
|
|
|
dependencies: [aux, vulkan],
|
|
|
|
)
|