monado/src/xrt/targets/CMakeLists.txt

24 lines
438 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(BUILD_TARGET_OPENXR)
add_subdirectory(openxr)
endif()
add_subdirectory(cli)
2019-07-21 14:45:50 +00:00
if(BUILD_TARGET_GUI)
add_subdirectory(gui)
endif()
if(XRT_BUILD_IPC)
add_subdirectory(service)
endif()