mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
d/rift_s: Move builder to targets/common
Move the builder into the common area.
This commit is contained in:
parent
5c573152a8
commit
32cc6e05da
|
@ -202,7 +202,6 @@ endif()
|
|||
if(XRT_BUILD_DRIVER_RIFT_S)
|
||||
add_library(
|
||||
drv_rift_s STATIC
|
||||
rift_s/rift_s_builder.c
|
||||
rift_s/rift_s_interface.h
|
||||
rift_s/rift_s_camera.c
|
||||
rift_s/rift_s_camera.h
|
||||
|
|
|
@ -29,6 +29,10 @@ if(XRT_BUILD_DRIVER_PSVR OR XRT_BUILD_DRIVER_PSMV)
|
|||
target_sources(target_lists PRIVATE target_builder_rgb_tracking.c)
|
||||
endif()
|
||||
|
||||
if(XRT_BUILD_DRIVER_RIFT_S)
|
||||
target_sources(target_lists PRIVATE target_builder_rift_s.c)
|
||||
endif()
|
||||
|
||||
if(XRT_BUILD_DRIVER_SURVIVE OR XRT_BUILD_DRIVER_VIVE)
|
||||
target_sources(target_lists PRIVATE target_builder_lighthouse.c)
|
||||
endif()
|
||||
|
|
|
@ -28,9 +28,8 @@
|
|||
#include "ht_ctrl_emu/ht_ctrl_emu_interface.h"
|
||||
#endif
|
||||
|
||||
#include "rift_s_interface.h"
|
||||
#include "rift_s.h"
|
||||
#include "rift_s_hmd.h"
|
||||
#include "rift_s/rift_s_interface.h"
|
||||
#include "rift_s/rift_s.h"
|
||||
|
||||
enum u_logging_level rift_s_log_level;
|
||||
|
Loading…
Reference in a new issue