monado/src/xrt/targets/CMakeLists.txt

35 lines
652 B
CMake
Raw Normal View History

2020-01-25 14:36:31 +00:00
# Copyright 2019-2020, Collabora, Ltd.
2019-03-18 05:52:32 +00:00
# SPDX-License-Identifier: BSL-1.0
######
# This is where we collect all of the pieces from the different parts of
# the source tree and build a complete driver or integration part.
2019-04-30 13:33:34 +00:00
add_subdirectory(common)
if(XRT_FEATURE_OPENXR)
add_subdirectory(openxr)
endif()
add_subdirectory(cli)
2019-07-21 14:45:50 +00:00
if(XRT_HAVE_SDL2)
2019-07-21 14:45:50 +00:00
add_subdirectory(gui)
endif()
if(XRT_FEATURE_SERVICE)
add_subdirectory(ctl)
endif()
if(XRT_FEATURE_SERVICE AND XRT_FEATURE_OPENXR)
if(ANDROID)
add_subdirectory(service-lib)
else()
add_subdirectory(service)
endif()
endif()
if(XRT_FEATURE_STEAMVR_PLUGIN)
add_subdirectory(steamvr_drv)
endif()