2015-08-07 14:37:41 +02:00
|
|
|
|
|
|
|
# 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
|
2016-02-24 14:42:25 +01:00
|
|
|
${CURRENT_HEADER_DIR}/AmlogicGrabber.h
|
2015-08-07 14:37:41 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
SET(AmlogicSOURCES
|
|
|
|
${CURRENT_SOURCE_DIR}/AmlogicWrapper.cpp
|
2015-08-08 08:13:59 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/AmlogicGrabber.cpp
|
2015-08-07 14:37:41 +02:00
|
|
|
)
|
|
|
|
|
2016-01-06 17:31:23 +01:00
|
|
|
if(ENABLE_QT5)
|
|
|
|
QT5_WRAP_CPP(AmlogicHEADERS_MOC ${AmlogicQT_HEADERS})
|
|
|
|
else(ENABLE_QT5)
|
2015-08-07 14:37:41 +02:00
|
|
|
QT4_WRAP_CPP(AmlogicHEADERS_MOC ${AmlogicQT_HEADERS})
|
2016-01-06 17:31:23 +01:00
|
|
|
endif(ENABLE_QT5)
|
2015-08-07 14:37:41 +02:00
|
|
|
|
|
|
|
add_library(amlogic-grabber
|
|
|
|
${AmlogicHEADERS}
|
|
|
|
${AmlogicQT_HEADERS}
|
|
|
|
${AmlogicHEADERS_MOC}
|
|
|
|
${AmlogicSOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(amlogic-grabber
|
|
|
|
hyperion
|
|
|
|
${QT_LIBRARIES})
|