change header include to start with "kodi/"

This needed for reworked header checks by Kodi's addon build system.
This commit is contained in:
Alwin Esch 2019-08-25 22:11:15 +02:00
parent 1431f694e1
commit 683064d517
6 changed files with 9 additions and 9 deletions

View File

@ -11,7 +11,7 @@ find_package(JsonCpp REQUIRED)
include_directories(
${kodiplatform_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})
set(DEPLIBS

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "libXBMC_addon.h"
#include "kodi/libXBMC_addon.h"
#include <string>
#include "p8-platform/os.h"
#include "client.h"

View File

@ -21,10 +21,10 @@
*/
#include "client.h"
#include <xbmc_pvr_dll.h>
#include <libXBMC_addon.h>
#include <kodi/xbmc_pvr_dll.h>
#include <kodi/libXBMC_addon.h>
#include <p8-platform/util/util.h>
#include <libKODI_guilib.h>
#include <kodi/libKODI_guilib.h>
#include "OctonetData.h"
#include "rtsp_client.hpp"

View File

@ -21,8 +21,8 @@
*
*/
#include "libXBMC_addon.h"
#include "libXBMC_pvr.h"
#include "kodi/libXBMC_addon.h"
#include "kodi/libXBMC_pvr.h"
#ifndef __func__
#define __func__ __FUNCTION__

View File

@ -5,7 +5,7 @@
#include "Socket.h"
#include "client.h"
#include <p8-platform/util/util.h>
#include <libXBMC_addon.h>
#include <kodi/libXBMC_addon.h>
#include <cstring>
#include <sstream>

View File

@ -2,7 +2,7 @@
#define _RTSP_CLIENT_HPP_
#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);
void rtsp_close();