mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c89e1fcefa
Former-commit-id: a73767a1abb2cac977492bd8c6cc593fb21840e1
36 lines
979 B
CMake
36 lines
979 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_SOURCE_DIR}/FramebufferFrameGrabber.h
|
|
)
|
|
|
|
SET(FramebufferGrabberSOURCES
|
|
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
|
)
|
|
|
|
QT4_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
|
|
|
add_library(framebuffer-grabber
|
|
${FramebufferGrabberHEADERS}
|
|
${FramebufferGrabberQT_HEADERS}
|
|
${FramebufferGrabberHEADERS_MOC}
|
|
${FramebufferGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(framebuffer-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|