mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
88fbc4dfde
* make hyperion to singelton. remove arguments for config and hyperion - both are gettable via Hyperion::getInstance * refactor hyperiond * remove qt4 comapt make zeroconf mandatory refactor hyperiond * xbmcchecker is now a singleton * cleanup in hyperiond zeroconf switchable between static and shared linking * fix xbmcchecker
31 lines
696 B
CMake
31 lines
696 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/osx)
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(OsxGrabberQT_HEADERS
|
|
${CURRENT_HEADER_DIR}/OsxWrapper.h
|
|
)
|
|
|
|
SET(OsxGrabberHEADERS
|
|
${CURRENT_HEADER_DIR}/OsxFrameGrabber.h
|
|
)
|
|
|
|
SET(OsxGrabberSOURCES
|
|
${CURRENT_SOURCE_DIR}/OsxWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/OsxFrameGrabber.cpp
|
|
)
|
|
|
|
QT5_WRAP_CPP(OsxGrabberHEADERS_MOC ${OsxGrabberQT_HEADERS})
|
|
|
|
add_library(osx-grabber
|
|
${OsxGrabberHEADERS}
|
|
${OsxGrabberQT_HEADERS}
|
|
${OsxGrabberHEADERS_MOC}
|
|
${OsxGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(osx-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|