hi Leute, ich würd gern Netflix in Windows testen. Ich hab aber keine Ahnung wie ich Kodi-Agile so kompiliere, dass auch Inputstream gebaut wird. Anbei meine bisherige Vorgehensweise. Ist aber an manchen Stellen komplett falsch. Bitte um Teilnahme. Am Ende hätten wir endlich mal ein komplettes Tutorial, dass auch wirklich jeder hinkriegt.
A. ALLE NÖTIGEN PROGRAMME INSTALLIEREN
1. Visual Studio 2015 mit
- Update 3
- Common Tools for Visual C++ 2015
- Windows 10 SDK
- Microsoft SQL Server Data Tools ?
- Microsoft Web Developer Tools ?
2. Microsoft DirectX SDK ?
3. Nullsoft scriptable install system
4. Java Runtime Environment (JRE)
5. Git for Windows 2.x
6. git client wie etwa TortoiseGit ?
7. Cmake
Genaue Links zu allen Programmen hier: http://kodi.wiki/view/HOW-TO:Compile_Kodi_for_Windows
B. KODI KOMPILIEREN
Git Bash:
1. cd c:
2. mkdir test
3. cd test
4. git clone https://github.com/FernetMenta/kodi-agile.git
Dann im File Explorer per Doppelkick drei Skripte ausführen:
cd c:\test\kodi-agile\project\BuildDependencies
1. DownloadBuildDeps.bat
2. DownloadMingwBuildEnv.bat
cd c:\test\kodi-agile\tools\buildsteps\win32
3. make-mingwlibs.bat
C. INPUTSTREAM EINBINDEN
Git Bash:
1. cd c:\test\kodi-agile
2. mkdir build-addons
3. cd build-addons
4. git clone https://github.com/liberty-develo…tive/tree/agile
5. cmake -DADDONS_TO_BUILD="inputstream.adaptive" -G "Visual Studio 14" -DCMAKE_INSTALL_PREFIX="C:\test\kodi-agile\build\addons" -DBUILD_DIR="C:\test\kodi-agile\build-addons" -DPACKAGE_ZIP=1 "C:\test\kodi-agile\cmake\addons"
6. cd c:\test\kodi-agile
7. cmake -G "Visual Studio 14"
8. cmake --build . --config "[definition='1','3']Debug[/definition]"
Soweit meine Vorgehensweise. Ich brauche nun eure Hile um die Fehler darin zu beseitigen.
Danke!!