Kodi Community Forum
Develop PVR addons with new cmake build system - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+---- Forum: PVR (https://forum.kodi.tv/forumdisplay.php?fid=136)
+---- Thread: Develop PVR addons with new cmake build system (/showthread.php?tid=219166)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


RE: Develop PVR addons with new cmake build system - negge - 2016-01-11

You need to change pvr.demo to pvr.iptvsimple.


RE: Develop PVR addons with new cmake build system - lucasoldi_646a - 2016-01-11

I've already done this Smile But with no luck Sad


RE: Develop PVR addons with new cmake build system - negge - 2016-01-12

Show the new output from both steps in that case.


RE: Develop PVR addons with new cmake build system - DexterF - 2016-01-15

I ran the whole cmake shebang and then make, it completed without errors, but now I don't know how to install the addons after that. make install does not work. re-running make install from the xbmc dir did not work either. make zip is not there anymore.
To me this all is pretty much broken.


RE: Develop PVR addons with new cmake build system - negge - 2016-01-15

Just copy the addon directory to .kodi/addons. The directoey with .so files in it.


RE: Develop PVR addons with new cmake build system - DexterF - 2016-01-15

Thanks, that works, actually. make install should handle this, my 0.02.


RE: Develop PVR addons with new cmake build system - rpcameron - 2016-01-15

Well, considering you told cmake to generate makefiles for a ZIP, make install wouldn't do anything extra. The proper install method at that point should be to choose 'Install from zip' in the Kodi interface.


RE: Develop PVR addons with new cmake build system - margro - 2016-01-17

I keep having trouble with the CMake stuff for building my pvr addon (pvr.mediaportal.tvserver).
I would like to continue developing the addon, but the CMake magic is preventing me from easy development and debugging. It takes me every time hours to figure out how I should build my own addon...

I would like to build a particular branch (https://github.com/margro/pvr.mediaportal.tvserver/tree/series_timers) of my addon and keep the link to my git repository after the build system cloned my addon such that I can easily commit and push changes to the sources.

So my question is what is the best way to build my branch and not use the defaults as stored in repo-binary-addons repository?
I need help for both Windows and Linux.


RE: Develop PVR addons with new cmake build system - FernetMenta - 2016-01-17

what of post#1 does not work for you?


RE: Develop PVR addons with new cmake build system - wsnipex - 2016-01-17

as mentioned in http://forum.kodi.tv/showthread.php?tid=219166&pid=1956626#pid1956626
you can point cmake to a local git repository as well


RE: Develop PVR addons with new cmake build system - FernetMenta - 2016-01-17

(2016-01-17, 19:58)wsnipex Wrote: as mentioned in http://forum.kodi.tv/showthread.php?tid=219166&pid=1956626#pid1956626
you can point cmake to a local git repository as well

as shown in post#1 for Linux and Windows Smile


RE: Develop PVR addons with new cmake build system - woot2133 - 2016-01-26

followed https://github.com/kodi-pvr/pvr.hts/blob/master/README.md
build worked without problems for Helix.

but for Isengard:
wget http://mirrors.kodi.tv/releases/source/15.2-Isengard.tar.gz / untar
git clone https://github.com/kodi-pvr/pvr.hts.git
cd pvr.hts && mkdir build && cd build
cmake -DADDONS_TO_BUILD=pvr.hts -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc-15.2-Isengard/addons -DPACKAGE_ZIP=1 ../../xbmc-15.2-Isengard/project/cmake/addons

Code:
-- No platform specific file /media/4E8698C58698AF49/storage/xbmc-15.2-Isengard/project/cmake/addons/depends/linux/CMakeLists.txt found
-- Configuring done
CMake Warning (dev) at /media/4E8698C58698AF49/storage/xbmc-15.2-Isengard/project/cmake/scripts/common/handle-depends.cmake:194 (add_dependencies):
  Policy CMP0046 is not set: Error on non-existent dependency in
  add_dependencies.  Run "cmake --help-policy CMP0046" for policy details.
  Use the cmake_policy command to set the policy and suppress this warning.

  The dependency target "kodi" of target "kodi-platform" does not exist.
Call Stack (most recent call first):
  depends/CMakeLists.txt:34 (add_addon_depends)

make (for the lulz):
Code:
Scanning dependencies of target pvr.hts
[ 75%] Creating directories for 'pvr.hts'
[ 78%] No download step for 'pvr.hts'
[ 81%] No patch step for 'pvr.hts'
[ 84%] No update step for 'pvr.hts'
[ 87%] Performing configure step for 'pvr.hts'
CMake Error at CMakeLists.txt:9 (find_package):
  By not providing "Findp8-platform.cmake" in CMAKE_MODULE_PATH this project
  has asked CMake to find a package configuration file provided by
  "p8-platform", but CMake did not find one.

  Could not find a package configuration file provided by "p8-platform" with
  any of the following names:

    p8-platformConfig.cmake
    p8-platform-config.cmake

  Add the installation prefix of "p8-platform" to CMAKE_PREFIX_PATH or set
  "p8-platform_DIR" to a directory containing one of the above files.  If
  "p8-platform" provides a separate development package or SDK, be sure it
  has been installed.


-- Configuring incomplete, errors occurred!
See also "/media/4E8698C58698AF49/storage/pvr.hts/CMakeFiles/CMakeOutput.log".
CMakeFiles/pvr.hts.dir/build.make:100: recipe for target 'pvr.hts-prefix/src/pvr.hts-stamp/pvr.hts-configure' failed
make[2]: *** [pvr.hts-prefix/src/pvr.hts-stamp/pvr.hts-configure] Error 1
CMakeFiles/Makefile2:60: recipe for target 'CMakeFiles/pvr.hts.dir/all' failed
make[1]: *** [CMakeFiles/pvr.hts.dir/all] Error 2
Makefile:76: recipe for target 'all' failed
make: *** [all] Error 2



RE: Develop PVR addons with new cmake build system - wsnipex - 2016-01-26

you have to use the isengard branch of pvr.hts


RE: Develop PVR addons with new cmake build system - woot2133 - 2016-01-26

excuse my lameness, I didn't notice there were multiple ones.


RE: Develop PVR addons with new cmake build system - jrussev - 2016-01-29

I'm trying to make some changes in pvr.iptvsimple-Isengard. I need to encode password and send it with .m3u8 file request.
So, the changes are done, but I can't compile the addon. What am I doing:

wget http://mirrors.kodi.tv/releases/source/1...ard.tar.gz / untar
cd ~/kodi/src/xbmc-15.2-Isengard
./bootstrap
./configure
make
make install

wget https://github.com/kodi-pvr/pvr.iptvsimple/archive/Isengard.zip / unzip
cd ~/kodi/src/pvr.iptvsimple-Isengard && mkdir build && cd build
cmake -DADDONS_TO_BUILD=pvr.iptvsimple-Isengard -DADDON_SRC_PREFIX=~/kodi/src/xbmc-15.2-Isengard/addons/ -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/kodi/src/xbmc-15.2-Isengard/addons/ -DPACKAGE_ZIP=1 ~/kodi/src/xbmc-15.2-Isengard/project/cmake/addons/

Code:
-- The C compiler identification is GNU 4.8.4
-- The CXX compiler identification is GNU 4.8.4
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
package zip specified
-- Building following addons: pvr.iptvsimple-Isengard
-- Overriding addon source directory prefix: ~/kodi/src/xbmc-15.2-Isengard/addons/
-- Processing /home/dancho/kodi/src/xbmc-15.2-Isengard/project/cmake/addons/depends/common/tinyxml/tinyxml.txt
-- tinyxml url: http://mirrors.xbmc.org/build-deps/sources/tinyxml-2.6.2_2.tar.gz
-- Processing /home/dancho/kodi/src/xbmc-15.2-Isengard/project/cmake/addons/depends/common/kodi-platform/kodi-platform.txt
-- kodi-platform url: https://github.com/xbmc/kodi-platform
-- kodi-platform depends: kodi;tinyxml;platform
-- Found Git: /usr/bin/git (found version "1.9.1")
-- Processing /home/dancho/kodi/src/xbmc-15.2-Isengard/project/cmake/addons/depends/common/platform/platform.txt
-- platform url: http://mirrors.kodi.tv/build-deps/sources/platform-1.0.10.tar.gz
-- No platform specific file /home/dancho/kodi/src/xbmc-15.2-Isengard/project/cmake/addons/depends/linux/CMakeLists.txt found
-- Configuring done
-- Generating done
-- Build files have been written to: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build

make -C ~/kodi/src/pvr.iptvsimple-Isengard/build/

Code:
make: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make[1]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
Scanning dependencies of target platform
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[  4%] Creating directories for 'platform'
[  8%] Performing download step (download, verify and extract) for 'platform'
-- downloading...
     src='http://mirrors.kodi.tv/build-deps/sources/platform-1.0.10.tar.gz'
     dst='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/platform-1.0.10.tar.gz'
     timeout='none'
-- [download 100% complete]
-- [download 2% complete]
-- [download 3% complete]
-- [download 5% complete]
-- [download 7% complete]
-- [download 9% complete]
-- [download 11% complete]
-- [download 13% complete]
-- [download 15% complete]
-- [download 16% complete]
-- [download 18% complete]
-- [download 20% complete]
-- [download 22% complete]
-- [download 24% complete]
-- [download 26% complete]
-- [download 27% complete]
-- [download 29% complete]
-- [download 31% complete]
-- [download 33% complete]
-- [download 35% complete]
-- [download 37% complete]
-- [download 39% complete]
-- [download 40% complete]
-- [download 42% complete]
-- [download 44% complete]
-- [download 46% complete]
-- [download 48% complete]
-- [download 50% complete]
-- [download 52% complete]
-- [download 53% complete]
-- [download 55% complete]
-- [download 57% complete]
-- [download 59% complete]
-- [download 61% complete]
-- [download 63% complete]
-- [download 65% complete]
-- [download 66% complete]
-- [download 68% complete]
-- [download 70% complete]
-- [download 72% complete]
-- [download 74% complete]
-- [download 76% complete]
-- [download 78% complete]
-- [download 79% complete]
-- [download 81% complete]
-- [download 83% complete]
-- [download 85% complete]
-- [download 87% complete]
-- [download 89% complete]
-- [download 90% complete]
-- [download 92% complete]
-- [download 94% complete]
-- [download 96% complete]
-- [download 98% complete]
-- [download 100% complete]
-- downloading... done
-- verifying file...
     file='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/platform-1.0.10.tar.gz'
-- verifying file... warning: did not verify file - no URL_HASH specified?
-- extracting...
     src='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/platform-1.0.10.tar.gz'
     dst='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform'
-- extracting... [tar xfz]
-- extracting... [analysis]
-- extracting... [rename]
-- extracting... [clean up]
-- extracting... done
[ 12%] No patch step for 'platform'
[ 16%] No update step for 'platform'
[ 20%] Performing configure step for 'platform'
-- The C compiler identification is GNU 4.8.4
-- The CXX compiler identification is GNU 4.8.4
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Looking for __atomic_fetch_add_4 in atomic
-- Looking for __atomic_fetch_add_4 in atomic - found
-- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH
-- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH - Success
-- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH
-- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH - Success
-- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP
-- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP - Success
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_INCLUDE_PATH
    CMAKE_LIBRARY_PATH
    ENABLE_STATIC
    PACKAGE_CONFIG_PATH


-- Build files have been written to: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build
[ 25%] Performing build step for 'platform'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
Scanning dependencies of target platform
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
[ 50%] Building C object CMakeFiles/platform.dir/src/util/fstrcmp.c.o
[100%] Building CXX object CMakeFiles/platform.dir/src/util/StringUtils.cpp.o
Linking CXX static library libplatform.a
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
[100%] Built target platform
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
[ 29%] Performing install step for 'platform'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
[100%] Built target platform
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
Install the project...
-- Install configuration: "Debug"
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/libplatform.a
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/os.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/posix/os-socket.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/posix/os-threads.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/posix/os-types.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/sockets/cdevsocket.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/sockets/socket.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/sockets/tcp.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/threads/atomics.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/threads/mutex.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/threads/threads.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/atomic.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/buffer.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/StringUtils.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/StdString.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/timeutils.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/platform/util/util.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/pkgconfig/platform.pc
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/platform/platform-config.cmake
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/platform/src/platform-build'
[ 33%] Completed 'platform'
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[ 33%] Built target platform
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
Scanning dependencies of target tinyxml
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[ 37%] Creating directories for 'tinyxml'
[ 41%] Performing download step (download, verify and extract) for 'tinyxml'
-- downloading...
     src='http://mirrors.xbmc.org/build-deps/sources/tinyxml-2.6.2_2.tar.gz'
     dst='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/tinyxml-2.6.2_2.tar.gz'
     timeout='none'
-- [download 100% complete]
-- [download 1% complete]
-- [download 2% complete]
-- [download 3% complete]
-- [download 4% complete]
-- [download 5% complete]
-- [download 6% complete]
-- [download 7% complete]
-- [download 8% complete]
-- [download 9% complete]
-- [download 10% complete]
-- [download 11% complete]
-- [download 12% complete]
-- [download 13% complete]
-- [download 14% complete]
-- [download 15% complete]
-- [download 16% complete]
-- [download 17% complete]
-- [download 18% complete]
-- [download 19% complete]
-- [download 20% complete]
-- [download 21% complete]
-- [download 22% complete]
-- [download 23% complete]
-- [download 24% complete]
-- [download 25% complete]
-- [download 26% complete]
-- [download 27% complete]
-- [download 28% complete]
-- [download 29% complete]
-- [download 30% complete]
-- [download 31% complete]
-- [download 32% complete]
-- [download 33% complete]
-- [download 34% complete]
-- [download 35% complete]
-- [download 36% complete]
-- [download 37% complete]
-- [download 38% complete]
-- [download 39% complete]
-- [download 40% complete]
-- [download 41% complete]
-- [download 42% complete]
-- [download 43% complete]
-- [download 44% complete]
-- [download 45% complete]
-- [download 46% complete]
-- [download 47% complete]
-- [download 48% complete]
-- [download 49% complete]
-- [download 50% complete]
-- [download 51% complete]
-- [download 52% complete]
-- [download 53% complete]
-- [download 54% complete]
-- [download 55% complete]
-- [download 56% complete]
-- [download 57% complete]
-- [download 58% complete]
-- [download 59% complete]
-- [download 60% complete]
-- [download 61% complete]
-- [download 62% complete]
-- [download 63% complete]
-- [download 64% complete]
-- [download 65% complete]
-- [download 66% complete]
-- [download 67% complete]
-- [download 68% complete]
-- [download 69% complete]
-- [download 70% complete]
-- [download 71% complete]
-- [download 72% complete]
-- [download 73% complete]
-- [download 74% complete]
-- [download 75% complete]
-- [download 76% complete]
-- [download 77% complete]
-- [download 78% complete]
-- [download 79% complete]
-- [download 80% complete]
-- [download 81% complete]
-- [download 82% complete]
-- [download 83% complete]
-- [download 84% complete]
-- [download 85% complete]
-- [download 86% complete]
-- [download 87% complete]
-- [download 88% complete]
-- [download 89% complete]
-- [download 90% complete]
-- [download 91% complete]
-- [download 92% complete]
-- [download 93% complete]
-- [download 94% complete]
-- [download 95% complete]
-- [download 96% complete]
-- [download 97% complete]
-- [download 98% complete]
-- [download 99% complete]
-- [download 100% complete]
-- downloading... done
-- verifying file...
     file='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/tinyxml-2.6.2_2.tar.gz'
-- verifying file... warning: did not verify file - no URL_HASH specified?
-- extracting...
     src='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/download/tinyxml-2.6.2_2.tar.gz'
     dst='/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml'
-- extracting... [tar xfz]
-- extracting... [analysis]
-- extracting... [rename]
-- extracting... [clean up]
-- extracting... done
[ 45%] Performing patch step for 'tinyxml'
[ 50%] No update step for 'tinyxml'
[ 54%] Performing configure step for 'tinyxml'
-- The C compiler identification is GNU 4.8.4
-- The CXX compiler identification is GNU 4.8.4
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_INCLUDE_PATH
    CMAKE_LIBRARY_PATH
    CORE_SYSTEM_NAME
    ENABLE_STATIC
    PACKAGE_CONFIG_PATH


-- Build files have been written to: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build
[ 58%] Performing build step for 'tinyxml'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
Scanning dependencies of target tinyxml
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
[ 25%] Building CXX object CMakeFiles/tinyxml.dir/src/tinystr.cpp.o
[ 50%] Building CXX object CMakeFiles/tinyxml.dir/src/tinyxml.cpp.o
[ 75%] Building CXX object CMakeFiles/tinyxml.dir/src/tinyxmlerror.cpp.o
[100%] Building CXX object CMakeFiles/tinyxml.dir/src/tinyxmlparser.cpp.o
Linking CXX static library libtinyxml.a
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
[100%] Built target tinyxml
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
[ 62%] Performing install step for 'tinyxml'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
[100%] Built target tinyxml
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
Install the project...
-- Install configuration: "Debug"
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/tinystr.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/tinyxml.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/libtinyxml.a
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/tinyxml/src/tinyxml-build'
[ 66%] Completed 'tinyxml'
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[ 66%] Built target tinyxml
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
Scanning dependencies of target kodi-platform
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make[2]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[ 70%] Creating directories for 'kodi-platform'
[ 75%] Performing download step (git clone) for 'kodi-platform'
Cloning into 'kodi-platform'...
remote: Counting objects: 257, done.
remote: Total 257 (delta 0), reused 0 (delta 0), pack-reused 256
Receiving objects: 100% (257/257), 136.81 KiB | 0 bytes/s, done.
Resolving deltas: 100% (114/114), done.
Checking connectivity... done.
Note: checking out '054a42f66'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b new_branch_name

HEAD is now at 054a42f... Merge pull request #6 from wsnipex/master
[ 79%] No patch step for 'kodi-platform'
[ 83%] Performing update step for 'kodi-platform'
[ 87%] Performing configure step for 'kodi-platform'
-- The C compiler identification is GNU 4.8.4
-- The CXX compiler identification is GNU 4.8.4
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Checking to see if CXX compiler accepts flag -flto
-- Checking to see if CXX compiler accepts flag -flto - yes
-- Found TinyXML: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include  
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Looking for __atomic_fetch_add_4 in atomic
-- Looking for __atomic_fetch_add_4 in atomic - found
-- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH
-- Performing Test HAS_BUILTIN_SYNC_ADD_AND_FETCH - Success
-- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH
-- Performing Test HAS_BUILTIN_SYNC_SUB_AND_FETCH - Success
-- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP
-- Performing Test HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP - Success
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    ENABLE_STATIC
    OUTPUT_DIR


-- Build files have been written to: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build
[ 91%] Performing build step for 'kodi-platform'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
Scanning dependencies of target kodiplatform
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
[100%] Building CXX object CMakeFiles/kodiplatform.dir/src/util/XMLUtils.cpp.o
Linking CXX static library libkodiplatform.a
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
[100%] Built target kodiplatform
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
[ 95%] Performing install step for 'kodi-platform'
make[3]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[4]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[5]: Entering directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
make[5]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
[100%] Built target kodiplatform
make[4]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
Install the project...
-- Install configuration: "Debug"
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/libkodiplatform.a
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/include/kodi/util/XMLUtils.h
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/pkgconfig/kodiplatform.pc
-- Installing: /home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/depends/lib/kodiplatform/kodiplatform-config.cmake
make[3]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build/build/kodi-platform/src/kodi-platform-build'
[100%] Completed 'kodi-platform'
make[2]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
[100%] Built target kodi-platform
make[1]: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'
make: Leaving directory `/home/dancho/kodi/src/pvr.iptvsimple-Isengard/build'

There are no errors, but I can't find .zip/.so files... What am I missing ?

P.S. I try the same with master branch of pvr.iptvsimple