mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e6170ed698
cleanup some cmakelist files fix qt5 build Former-commit-id: 024b5b6dc5dc96fcb16f6e8958ad3684a6728504
40 lines
1.0 KiB
CMake
40 lines
1.0 KiB
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
|
|
)
|
|
|
|
if(ENABLE_QT5)
|
|
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
|
else(ENABLE_QT5)
|
|
QT4_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
|
endif(ENABLE_QT5)
|
|
|
|
add_library(framebuffer-grabber
|
|
${FramebufferGrabberHEADERS}
|
|
${FramebufferGrabberQT_HEADERS}
|
|
${FramebufferGrabberHEADERS_MOC}
|
|
${FramebufferGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(framebuffer-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|