-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
37 lines (27 loc) · 954 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
35
36
37
project(pvr.hdhomerun)
cmake_minimum_required(VERSION 2.6)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR})
enable_language(CXX)
find_package(kodi REQUIRED)
find_package(kodiplatform REQUIRED)
find_package(platform REQUIRED)
find_package(JsonCpp REQUIRED)
find_package(hdhomerun REQUIRED)
include_directories(${kodiplatform_INCLUDE_DIRS}
${platform_INCLUDE_DIRS}
${KODI_INCLUDE_DIR}
${JSONCPP_INCLUDE_DIRS}
${HDHOMERUN_INCLUDE_DIRS})
set(DEPLIBS ${kodiplatform_LIBRARIES}
${platform_LIBRARIES}
${JSONCPP_LIBRARIES}
${HDHOMERUN_LIBRARIES})
set(PVRHDHOMERUN_SOURCES src/client.cpp
src/HDHomeRunTuners.cpp
src/Utils.cpp)
if(WIN32)
list(APPEND DEPLIBS ws2_32)
list(APPEND DEPLIBS iphlpapi)
endif()
build_addon(pvr.hdhomerun PVRHDHOMERUN DEPLIBS)
include(CPack)