2016-03-09 07:03:17 +01:00
|
|
|
|
|
|
|
# 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
|
2016-05-26 23:44:27 +02:00
|
|
|
${CURRENT_HEADER_DIR}/FramebufferWrapper.h
|
2016-03-09 07:03:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
SET(FramebufferGrabberHEADERS
|
2016-05-26 23:44:27 +02:00
|
|
|
${CURRENT_HEADER_DIR}/FramebufferFrameGrabber.h
|
2016-03-09 07:03:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
SET(FramebufferGrabberSOURCES
|
2016-05-26 23:44:27 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
2016-03-09 07:03:17 +01:00
|
|
|
)
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
2016-03-09 07:03:17 +01:00
|
|
|
|
|
|
|
add_library(framebuffer-grabber
|
2016-05-26 23:44:27 +02:00
|
|
|
${FramebufferGrabberHEADERS}
|
|
|
|
${FramebufferGrabberQT_HEADERS}
|
|
|
|
${FramebufferGrabberHEADERS_MOC}
|
|
|
|
${FramebufferGrabberSOURCES}
|
2016-03-09 07:03:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(framebuffer-grabber
|
2016-05-26 23:44:27 +02:00
|
|
|
hyperion
|
|
|
|
${QT_LIBRARIES})
|