2019-03-18 05:52:32 +00:00
|
|
|
# Copyright 2019, Collabora, Ltd.
|
|
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../include
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../auxiliary
|
|
|
|
)
|
|
|
|
|
|
|
|
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})
|
|
|
|
set_property(TARGET drv_ohmd PROPERTY POSITION_INDEPENDENT_CODE ON)
|
|
|
|
target_include_directories(drv_ohmd SYSTEM
|
|
|
|
PRIVATE ${OPENHMD_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
2019-04-08 16:28:05 +00:00
|
|
|
if(BUILD_WITH_HIDAPI)
|
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})
|
|
|
|
set_property(TARGET drv_hdk PROPERTY POSITION_INDEPENDENT_CODE ON)
|
|
|
|
target_include_directories(drv_hdk SYSTEM
|
|
|
|
PRIVATE ${HIDAPI_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
endif()
|