mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c124e2136a
* Add CEC functionality * Initial commit * removed libCEC from the system skip list Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
18 lines
441 B
CMake
18 lines
441 B
CMake
# Define the current source locations
|
|
find_package(CEC REQUIRED)
|
|
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/cec)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/cec)
|
|
|
|
FILE (GLOB CEC_SOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp")
|
|
add_library(cechandler ${CEC_SOURCES})
|
|
|
|
include_directories(${CEC_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(cechandler
|
|
dl
|
|
${CEC_LIBRARIES}
|
|
Qt5::Core
|
|
)
|
|
|