forked from simphax/pvr.iptvsimple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
34 lines (25 loc) · 926 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
project(pvr.iptvsimple.rec)
cmake_minimum_required(VERSION 2.6)
enable_language(CXX)
find_package(Kodi REQUIRED)
find_package(kodiplatform REQUIRED)
find_package(p8-platform REQUIRED)
find_package(ZLIB REQUIRED)
include_directories(${kodiplatform_INCLUDE_DIRS}
${p8-platform_INCLUDE_DIRS}
${KODI_INCLUDE_DIR}
${ZLIB_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}/lib)
set(DEPLIBS ${p8-platform_LIBRARIES}
${ZLIB_LIBRARIES})
message(STATUS "ZLIB_LIBRARIES: ${ZLIB_LIBRARIES}")
set(IPTV_SOURCES src/client.cpp
src/PVRIptvData.cpp
src/PVRRecorder.cpp
src/PVRUtils.cpp
src/PVRRecJob.cpp
src/PVRSchedulerThread.cpp
src/PVRRecorderThread.cpp
src/PVRPlayList.cpp)
build_addon(pvr.iptvsimple.rec IPTV DEPLIBS)
include(CPack)