diff options
author | Christian Fetzer <fetzer.ch@gmail.com> | 2016-12-24 14:01:24 +0100 |
---|---|---|
committer | Christian Fetzer <fetzer.ch@gmail.com> | 2016-12-24 14:01:24 +0100 |
commit | e851a583a98dbed02b5c3b6efd3668f881ab3053 (patch) | |
tree | 84ab6817239f2e09198c6305552e926f0545d78d /docs | |
parent | 3795c81850a63f23c0c14bcea171989dabfaedf8 (diff) |
[docs] Fix cmake paths in README.ios.md and README.osx.md
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.ios.md | 6 | ||||
-rw-r--r-- | docs/README.osx.md | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/README.ios.md b/docs/README.ios.md index 3ef68ea251..e1a8b85b78 100644 --- a/docs/README.ios.md +++ b/docs/README.ios.md @@ -133,7 +133,7 @@ used to configure CMake. mkdir $HOME/Kodi/build cd $HOME/Kodi/build - /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/iphoneos9.3_armv7-target/share/Toolchain.cmake ../project/cmake + /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/iphoneos9.3_armv7-target/share/Toolchain.cmake .. The toolchain file location differs depending on your iOS and SDK version and you have to replace `iphoneos9.3_armv7` in the filename above with the correct @@ -172,7 +172,7 @@ compile with make: mkdir $HOME/Kodi/build cd $HOME/Kodi/build - /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/iphoneos9.3_armv7-target/share/Toolchain.cmake ../project/cmake + /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/iphoneos9.3_armv7-target/share/Toolchain.cmake .. make The `-G` parameter defines the type of the generated project. Here it either @@ -228,6 +228,6 @@ From Xcode7 on this approach is also available for non paying app developers ## 6 References -- [project/cmake/README.md](https://github.com/xbmc/xbmc/tree/master/project/cmake/README.md) +- [cmake/README.md](https://github.com/xbmc/xbmc/tree/master/cmake/README.md) - [tools/depends/README](https://github.com/xbmc/xbmc/tree/master/tools/depends/README) - [iOS section in forum.kodi.tv](http://forum.kodi.tv/forumdisplay.php?fid=137) diff --git a/docs/README.osx.md b/docs/README.osx.md index 78ba32dfe1..37ffd12c15 100644 --- a/docs/README.osx.md +++ b/docs/README.osx.md @@ -133,7 +133,7 @@ used to configure CMake. mkdir $HOME/Kodi/build cd $HOME/Kodi/build - /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.12_x86_64-target/share/Toolchain.cmake ../project/cmake + /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.12_x86_64-target/share/Toolchain.cmake .. The toolchain file location differs depending on your macOS and SDK version and you have to replace `macosx10.12_x86_64` in the filename above with the correct @@ -176,7 +176,7 @@ compile with make: mkdir $HOME/Kodi/build cd $HOME/Kodi/build - /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.12_x86_64-target/share/Toolchain.cmake ../project/cmake + /Users/Shared/xbmc-depends/buildtools-native/bin/cmake -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.12_x86_64-target/share/Toolchain.cmake .. make The `-G` parameter defines the type of the generated project. Here it either @@ -194,6 +194,6 @@ Xcode, or if using makefiles by issuing: ## 6 References -- [project/cmake/README.md](https://github.com/xbmc/xbmc/tree/master/project/cmake/README.md) +- [cmake/README.md](https://github.com/xbmc/xbmc/tree/master/cmake/README.md) - [tools/depends/README](https://github.com/xbmc/xbmc/tree/master/tools/depends/README) - [MAC OS X section in forum.kodi.tv](http://forum.kodi.tv/forumdisplay.php?fid=56) |