diff options
author | Rechi <Rechi@users.noreply.github.com> | 2017-05-12 20:43:05 +0200 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2017-05-12 20:43:05 +0200 |
commit | fbbd8493d7d3ada357a83db356804da8e973ab05 (patch) | |
tree | 69993e538033bbe8440bc9e80d5bef98608c66d7 /docs | |
parent | 035fd6ff891ae44c6fdf096d0a14bd4132b46df4 (diff) |
[docs] ios & osx use 'make -C tools/depends/target/cmakebuildsys' for generation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.ios.md | 10 | ||||
-rw-r--r-- | docs/README.osx.md | 10 |
2 files changed, 6 insertions, 14 deletions
diff --git a/docs/README.ios.md b/docs/README.ios.md index c7f9332153..e2494ce9d7 100644 --- a/docs/README.ios.md +++ b/docs/README.ios.md @@ -170,13 +170,9 @@ You can specify `Release` instead of `Debug` as a configuration. CMake is also able to generate a Makefile based project that can be used to 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 .. - make - -The `-G` parameter defines the type of the generated project. Here it either -has to be omitted, or specifically set to `-G "Unix Makefiles"`. + cd $HOME/Kodi + make -C tools/depends/target/cmakebuildsys + make -C build ## 5 Packaging diff --git a/docs/README.osx.md b/docs/README.osx.md index 7d48fafd9f..f16d794b7d 100644 --- a/docs/README.osx.md +++ b/docs/README.osx.md @@ -172,13 +172,9 @@ You can specify `Release` instead of `Debug` as a configuration. CMake is also able to generate a Makefile based project that can be used to 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 .. - make - -The `-G` parameter defines the type of the generated project. Here it either -has to be omitted, or specifically set to `-G "Unix Makefiles"`. + cd $HOME/Kodi + make -C tools/depends/target/cmakebuildsys + make -C build ## 5 Packaging |