mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
fix compile issue on rpi (possible caused by latest cmake version)
This commit is contained in:
@@ -21,6 +21,13 @@ target_link_libraries(hyperiond
|
||||
)
|
||||
|
||||
if (ENABLE_DISPMANX)
|
||||
IF ( "${PLATFORM}" MATCHES rpi)
|
||||
find_package(BCM REQUIRED)
|
||||
include_directories(${BCM_INCLUDE_DIRS})
|
||||
ELSE()
|
||||
SET(BCM_INCLUDE_DIRS "")
|
||||
SET(BCM_LIBRARIES "")
|
||||
ENDIF()
|
||||
target_link_libraries(hyperiond dispmanx-grabber)
|
||||
endif ()
|
||||
|
||||
|
@@ -54,7 +54,7 @@ class SysTray;
|
||||
class HyperionDaemon : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
friend SysTray;
|
||||
|
||||
public:
|
||||
|
Reference in New Issue
Block a user