mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
348e0c1ee8
Former-commit-id: b56a72681edbf442a28fb3106a4ca445b6e6aaa8
30 lines
724 B
CMake
30 lines
724 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/amlogic)
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(AmlogicQT_HEADERS ${CURRENT_HEADER_DIR}/AmlogicWrapper.h)
|
|
|
|
SET(AmlogicHEADERS
|
|
${CURRENT_SOURCE_DIR}/AmlogicGrabber.h
|
|
)
|
|
|
|
SET(AmlogicSOURCES
|
|
${CURRENT_SOURCE_DIR}/AmlogicWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/AmlogicGrabber.cpp
|
|
)
|
|
|
|
QT4_WRAP_CPP(AmlogicHEADERS_MOC ${AmlogicQT_HEADERS})
|
|
|
|
add_library(amlogic-grabber
|
|
${AmlogicHEADERS}
|
|
${AmlogicQT_HEADERS}
|
|
${AmlogicHEADERS_MOC}
|
|
${AmlogicSOURCES}
|
|
)
|
|
|
|
target_link_libraries(amlogic-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|