2019-03-18 05:52:32 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
2019-04-29 16:18:09 +00:00
|
|
|
|
2019-03-18 05:52:32 +00:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../auxiliary
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-04-29 16:18:09 +00:00
|
|
|
if(BUILD_DRIVER_HDK)
|
2019-03-18 05:52:32 +00:00
|
|
|
set(HDK_SOURCE_FILES
|
|
|
|
hdk/hdk_device.cpp
|
|
|
|
hdk/hdk_device.h
|
|
|
|
hdk/hdk_interface.h
|
|
|
|
hdk/hdk_prober.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_hdk OBJECT ${HDK_SOURCE_FILES})
|
|
|
|
target_include_directories(drv_hdk SYSTEM
|
|
|
|
PRIVATE ${HIDAPI_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|
2019-04-29 16:18:09 +00:00
|
|
|
|
|
|
|
|
2019-06-19 21:50:55 +00:00
|
|
|
if(BUILD_DRIVER_HYDRA)
|
|
|
|
set(HYDRA_SOURCE_FILES
|
|
|
|
hydra/hydra_driver.c
|
|
|
|
hydra/hydra_interface.h
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_hydra OBJECT ${HYDRA_SOURCE_FILES})
|
|
|
|
endif()
|
|
|
|
|
2019-04-29 16:18:09 +00:00
|
|
|
if(BUILD_DRIVER_OHMD)
|
|
|
|
set(OHMD_SOURCE_FILES
|
|
|
|
ohmd/oh_device.c
|
|
|
|
ohmd/oh_device.h
|
|
|
|
ohmd/oh_interface.h
|
|
|
|
ohmd/oh_prober.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_ohmd OBJECT ${OHMD_SOURCE_FILES})
|
|
|
|
target_include_directories(drv_ohmd SYSTEM
|
|
|
|
PRIVATE ${OPENHMD_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|
2019-04-20 01:23:50 +00:00
|
|
|
|
|
|
|
|
2019-05-31 16:52:54 +00:00
|
|
|
if(BUILD_DRIVER_PSMV)
|
|
|
|
set(PSMOVE_SOURCE_FILES
|
|
|
|
psmv/psmv_driver.c
|
|
|
|
psmv/psmv_interface.h
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_psmv OBJECT ${PSMOVE_SOURCE_FILES})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2019-04-20 01:23:50 +00:00
|
|
|
if(BUILD_DRIVER_PSVR)
|
|
|
|
set(PSVR_SOURCE_FILES
|
|
|
|
psvr/psvr_device.c
|
|
|
|
psvr/psvr_device.h
|
|
|
|
psvr/psvr_interface.h
|
|
|
|
psvr/psvr_packet.c
|
|
|
|
psvr/psvr_prober.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_psvr OBJECT ${PSVR_SOURCE_FILES})
|
|
|
|
target_include_directories(drv_psvr SYSTEM
|
|
|
|
PRIVATE ${HIDAPI_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|
2019-07-22 18:21:04 +00:00
|
|
|
|
2019-10-02 11:00:52 +00:00
|
|
|
if(BUILD_DRIVER_VIVE)
|
|
|
|
set(VIVE_SOURCE_FILES
|
|
|
|
vive/vive_device.h
|
|
|
|
vive/vive_device.c
|
|
|
|
vive/vive_prober.h
|
|
|
|
vive/vive_prober.c
|
|
|
|
vive/vive_protocol.h
|
|
|
|
../../external/nxjson/nxjson.h
|
|
|
|
../../external/nxjson/nxjson.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_vive OBJECT ${VIVE_SOURCE_FILES})
|
|
|
|
target_include_directories(drv_vive SYSTEM PRIVATE ../../external)
|
|
|
|
target_link_libraries(drv_vive z)
|
|
|
|
endif()
|
2019-07-22 18:21:04 +00:00
|
|
|
|
|
|
|
if(BUILD_DRIVER_V4L2)
|
|
|
|
set(V4L2_SOURCE_FILES
|
|
|
|
v4l2/v4l2_driver.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Use OBJECT to not create a archive, since it just gets in the way.
|
|
|
|
add_library(drv_v4l2 OBJECT ${V4L2_SOURCE_FILES})
|
|
|
|
endif()
|