mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
3ac0781c1f
* big kodichecker rework - use new logger - 'enable' flag in config - startable on runtime (atm not stoppable and no reconfigure) - rename xbmc to kodi * remove unnecceasry checks for kodi * make kodichecker stoppable and add reconfigure * tune config
30 lines
712 B
CMake
30 lines
712 B
CMake
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/kodivideochecker)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/kodivideochecker)
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(KODIVideoChecker_QT_HEADERS
|
|
${CURRENT_HEADER_DIR}/KODIVideoChecker.h
|
|
)
|
|
|
|
SET(KODIVideoChecker_HEADERS
|
|
)
|
|
|
|
SET(KODIVideoChecker_SOURCES
|
|
${CURRENT_SOURCE_DIR}/KODIVideoChecker.cpp
|
|
)
|
|
|
|
QT5_WRAP_CPP(KODIVideoChecker_HEADERS_MOC ${KODIVideoChecker_QT_HEADERS})
|
|
|
|
add_library(kodivideochecker
|
|
${KODIVideoChecker_HEADERS}
|
|
${KODIVideoChecker_QT_HEADERS}
|
|
${KODIVideoChecker_HEADERS_MOC}
|
|
${KODIVideoChecker_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(kodivideochecker
|
|
hyperion
|
|
${QT_LIBRARIES})
|