mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
88fbc4dfde
* make hyperion to singelton. remove arguments for config and hyperion - both are gettable via Hyperion::getInstance * refactor hyperiond * remove qt4 comapt make zeroconf mandatory refactor hyperiond * xbmcchecker is now a singleton * cleanup in hyperiond zeroconf switchable between static and shared linking * fix xbmcchecker
36 lines
934 B
CMake
36 lines
934 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/framebuffer)
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(FramebufferGrabberQT_HEADERS
|
|
${CURRENT_HEADER_DIR}/FramebufferWrapper.h
|
|
)
|
|
|
|
SET(FramebufferGrabberHEADERS
|
|
${CURRENT_HEADER_DIR}/FramebufferFrameGrabber.h
|
|
)
|
|
|
|
SET(FramebufferGrabberSOURCES
|
|
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
|
)
|
|
|
|
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
|
|
|
add_library(framebuffer-grabber
|
|
${FramebufferGrabberHEADERS}
|
|
${FramebufferGrabberQT_HEADERS}
|
|
${FramebufferGrabberHEADERS_MOC}
|
|
${FramebufferGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(framebuffer-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|