mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
* update * resolve qt5w * test * Go down cmake python search won the price for crazy lib searches! * 2.7 python forced, RPATH * upstream * ... * update * ... * 2.7.12 py it picks random versions... * max 7.12.5.... * Test 14.04 tests
30 lines
683 B
CMake
30 lines
683 B
CMake
|
|
# Find the BCM-package (VC control)
|
|
find_package(BCM REQUIRED)
|
|
include_directories(${BCM_INCLUDE_DIRS})
|
|
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/dispmanx)
|
|
|
|
SET(DispmanxGrabberHEADERS
|
|
${CURRENT_HEADER_DIR}/DispmanxWrapper.h
|
|
${CURRENT_HEADER_DIR}/DispmanxFrameGrabber.h
|
|
)
|
|
|
|
SET(DispmanxGrabberSOURCES
|
|
${CURRENT_SOURCE_DIR}/DispmanxWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/DispmanxFrameGrabber.cpp
|
|
)
|
|
|
|
add_library(dispmanx-grabber
|
|
${DispmanxGrabberHEADERS}
|
|
${DispmanxGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(dispmanx-grabber
|
|
hyperion
|
|
${QT_LIBRARIES}
|
|
${BCM_LIBRARIES}
|
|
)
|