2015-01-18 00:04:45 +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
|
|
|
|
${CURRENT_HEADER_DIR}/FramebufferWrapper.h
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(FramebufferGrabberHEADERS
|
|
|
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.h
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(FramebufferGrabberSOURCES
|
|
|
|
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
|
|
|
)
|
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
if(ENABLE_QT5)
|
|
|
|
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
|
|
|
else(ENABLE_QT5)
|
2015-01-18 00:04:45 +01:00
|
|
|
QT4_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
2016-01-06 17:31:23 +01:00
|
|
|
endif(ENABLE_QT5)
|
2015-01-18 00:04:45 +01:00
|
|
|
|
|
|
|
add_library(framebuffer-grabber
|
|
|
|
${FramebufferGrabberHEADERS}
|
|
|
|
${FramebufferGrabberQT_HEADERS}
|
|
|
|
${FramebufferGrabberHEADERS_MOC}
|
|
|
|
${FramebufferGrabberSOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(framebuffer-grabber
|
|
|
|
hyperion
|
|
|
|
${QT_LIBRARIES})
|