mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* update * resolve qt5w * test * Go down cmake python search won the price for crazy lib searches! * 2.7 python forced, RPATH * upstream * ... * update * ... * 2.7.12 py it picks random versions... * max 7.12.5.... * Test 14.04 tests
23 lines
485 B
CMake
23 lines
485 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)
|
|
|
|
SET(KODIVideoChecker_HEADERS
|
|
${CURRENT_HEADER_DIR}/KODIVideoChecker.h
|
|
)
|
|
|
|
SET(KODIVideoChecker_SOURCES
|
|
${CURRENT_SOURCE_DIR}/KODIVideoChecker.cpp
|
|
)
|
|
|
|
|
|
add_library(kodivideochecker
|
|
${KODIVideoChecker_HEADERS}
|
|
${KODIVideoChecker_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(kodivideochecker
|
|
hyperion
|
|
${QT_LIBRARIES})
|