mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2023-10-10 13:36:57 +02:00
Merge pull request #32 from AlwinEsch/Leia-change
[Leia] update CMakeLists.txt to 3.5 and change include way
This commit is contained in:
commit
e35cc37347
28
.travis.yml
28
.travis.yml
@ -7,28 +7,24 @@ language: cpp
|
|||||||
# Linux. We need Trusty in order to get up to date versions of
|
# Linux. We need Trusty in order to get up to date versions of
|
||||||
# cmake and g++.
|
# cmake and g++.
|
||||||
#
|
#
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- app_id=pvr.octonet
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: xenial
|
||||||
sudo: required
|
sudo: required
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: xenial
|
||||||
sudo: required
|
sudo: required
|
||||||
compiler: clang
|
compiler: clang
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode7.3
|
osx_image: xcode9
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode6.1
|
osx_image: xcode9.4
|
||||||
|
|
||||||
#
|
|
||||||
# Some of the OS X images don't have cmake, contrary to what people
|
|
||||||
# on the Internet say
|
|
||||||
#
|
|
||||||
before_install:
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew update ; fi
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew install cmake ; fi
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# The addon source is automatically checked out in $TRAVIS_BUILD_DIR,
|
# The addon source is automatically checked out in $TRAVIS_BUILD_DIR,
|
||||||
@ -37,9 +33,9 @@ before_install:
|
|||||||
before_script:
|
before_script:
|
||||||
- cd $TRAVIS_BUILD_DIR/..
|
- cd $TRAVIS_BUILD_DIR/..
|
||||||
- git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git
|
- git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git
|
||||||
- mkdir -p xbmc/cmake/addons/addons/pvr.octonet
|
- cd ${app_id} && mkdir build && cd build
|
||||||
- echo "pvr.octonet https://github.com/DigitalDevices/pvr.octonet master" > xbmc/cmake/addons/addons/pvr.octonet/pvr.octonet.txt
|
- mkdir -p definition/${app_id}
|
||||||
- cd $TRAVIS_BUILD_DIR && mkdir build && cd build
|
- echo ${app_id} $TRAVIS_BUILD_DIR $TRAVIS_COMMIT > definition/${app_id}/${app_id}.txt
|
||||||
- cmake -DADDONS_TO_BUILD=pvr.octonet -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons
|
- cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DADDONS_DEFINITION_DIR=$TRAVIS_BUILD_DIR/build/definition -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons
|
||||||
|
|
||||||
script: make
|
script: make
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.5)
|
||||||
project(pvr.octonet)
|
project(pvr.octonet)
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 2.6)
|
|
||||||
|
|
||||||
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR})
|
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR})
|
||||||
enable_language(CXX)
|
|
||||||
|
|
||||||
find_package(Kodi REQUIRED)
|
find_package(Kodi REQUIRED)
|
||||||
find_package(kodiplatform REQUIRED)
|
find_package(kodiplatform REQUIRED)
|
||||||
@ -13,7 +11,7 @@ find_package(JsonCpp REQUIRED)
|
|||||||
include_directories(
|
include_directories(
|
||||||
${kodiplatform_INCLUDE_DIRS}
|
${kodiplatform_INCLUDE_DIRS}
|
||||||
${p8-platform_INCLUDE_DIRS}
|
${p8-platform_INCLUDE_DIRS}
|
||||||
${KODI_INCLUDE_DIR}
|
${KODI_INCLUDE_DIR}/.. # Hack way with "/..", need bigger Kodi cmake rework to match right include ways
|
||||||
${JSONCPP_INCLUDE_DIRS})
|
${JSONCPP_INCLUDE_DIRS})
|
||||||
|
|
||||||
set(DEPLIBS
|
set(DEPLIBS
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.5)
|
||||||
project(jsoncpp)
|
project(jsoncpp)
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 3.1)
|
|
||||||
enable_language(CXX)
|
|
||||||
SET(CMAKE_CXX_STANDARD 11)
|
SET(CMAKE_CXX_STANDARD 11)
|
||||||
SET(CMAKE_CXX_STANDARD_REQUIRED ON)
|
SET(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
SET(CMAKE_CXX_EXTENSIONS OFF)
|
SET(CMAKE_CXX_EXTENSIONS OFF)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<addon
|
<addon
|
||||||
id="pvr.octonet"
|
id="pvr.octonet"
|
||||||
version="0.7.0"
|
version="0.7.1"
|
||||||
name="Digital Devices Octopus NET Client"
|
name="Digital Devices Octopus NET Client"
|
||||||
provider-name="digitaldevices">
|
provider-name="digitaldevices">
|
||||||
<requires>@ADDON_DEPENDS@</requires>
|
<requires>@ADDON_DEPENDS@</requires>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include "libXBMC_addon.h"
|
#include "kodi/libXBMC_addon.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "p8-platform/os.h"
|
#include "p8-platform/os.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
@ -21,10 +21,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include <xbmc_pvr_dll.h>
|
#include <kodi/xbmc_pvr_dll.h>
|
||||||
#include <libXBMC_addon.h>
|
#include <kodi/libXBMC_addon.h>
|
||||||
#include <p8-platform/util/util.h>
|
#include <p8-platform/util/util.h>
|
||||||
#include <libKODI_guilib.h>
|
#include <kodi/libKODI_guilib.h>
|
||||||
|
|
||||||
#include "OctonetData.h"
|
#include "OctonetData.h"
|
||||||
#include "rtsp_client.hpp"
|
#include "rtsp_client.hpp"
|
||||||
|
@ -21,8 +21,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libXBMC_addon.h"
|
#include "kodi/libXBMC_addon.h"
|
||||||
#include "libXBMC_pvr.h"
|
#include "kodi/libXBMC_pvr.h"
|
||||||
|
|
||||||
#ifndef __func__
|
#ifndef __func__
|
||||||
#define __func__ __FUNCTION__
|
#define __func__ __FUNCTION__
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "Socket.h"
|
#include "Socket.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include <p8-platform/util/util.h>
|
#include <p8-platform/util/util.h>
|
||||||
#include <libXBMC_addon.h>
|
#include <kodi/libXBMC_addon.h>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#define _RTSP_CLIENT_HPP_
|
#define _RTSP_CLIENT_HPP_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <xbmc_pvr_types.h>
|
#include <kodi/xbmc_pvr_types.h>
|
||||||
|
|
||||||
bool rtsp_open(const std::string& name, const std::string& url_str);
|
bool rtsp_open(const std::string& name, const std::string& url_str);
|
||||||
void rtsp_close();
|
void rtsp_close();
|
||||||
|
Loading…
Reference in New Issue
Block a user