mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
ff93dd3b25
Revised Readme.md Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com>
19 lines
441 B
CMake
19 lines
441 B
CMake
# this is only available on real pi
|
|
IF ( "${PLATFORM}" MATCHES rpi)
|
|
# Find the BCM-package (VC control)
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
find_package(BCM REQUIRED)
|
|
include_directories(${BCM_INCLUDE_DIRS})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
link_directories(${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
|
|
|
add_executable(dispmanx2png
|
|
dispmanx2png.cpp)
|
|
|
|
target_link_libraries(dispmanx2png
|
|
dispmanx-grabber
|
|
Qt5::Gui)
|
|
ENDIF()
|