mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e608b11caa
Former-commit-id: 63e95fa85fc0ef5a66f6eb8b396cf4b6370cf5dd
32 lines
675 B
CMake
32 lines
675 B
CMake
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/v4l2)
|
|
|
|
SET(V4L2_QT_HEADERS
|
|
${CURRENT_HEADER_DIR}/V4L2Grabber.h
|
|
${CURRENT_HEADER_DIR}/V4L2Wrapper.h
|
|
)
|
|
|
|
SET(V4L2_HEADERS
|
|
${CURRENT_HEADER_DIR}/VideoStandard.h
|
|
)
|
|
|
|
SET(V4L2_SOURCES
|
|
${CURRENT_SOURCE_DIR}/V4L2Grabber.cpp
|
|
${CURRENT_SOURCE_DIR}/V4L2Wrapper.cpp
|
|
)
|
|
|
|
QT4_WRAP_CPP(V4L2_HEADERS_MOC ${V4L2_QT_HEADERS})
|
|
|
|
add_library(v4l2-grabber
|
|
${V4L2_HEADERS}
|
|
${V4L2_SOURCES}
|
|
${V4L2_QT_HEADERS}
|
|
${V4L2_HEADERS_MOC}
|
|
)
|
|
|
|
target_link_libraries(v4l2-grabber
|
|
hyperion
|
|
${QT_LIBRARIES}
|
|
)
|