diff options
author | Benjamin Port <benjamin.port@enioka.com> | 2018-08-25 20:32:55 +0200 |
---|---|---|
committer | Benjamin Port <benjamin.port@enioka.com> | 2018-08-26 12:47:20 +0200 |
commit | 206c5123c37eabf3f2d0611aebc52f95beb9e760 (patch) | |
tree | c38b1f0261e9e1dfc51e2f4fb74d63d9a3549389 /toolchain/Android.cmake | |
parent | 1790a6994a3536a9d6c73901cb7898615eb64861 (diff) | |
download | extra-cmake-modules-206c5123c37eabf3f2d0611aebc52f95beb9e760.tar.gz extra-cmake-modules-206c5123c37eabf3f2d0611aebc52f95beb9e760.tar.bz2 |
Change documentation to reflect the real toolchain CMake name
Reviewers: apol, alexeymin
Reviewed By: alexeymin
Subscribers: alexeymin, kde-frameworks-devel, kde-buildsystem
Tags: #frameworks, #build_system
Differential Revision: https://phabricator.kde.org/D15084
Diffstat (limited to 'toolchain/Android.cmake')
-rw-r--r-- | toolchain/Android.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolchain/Android.cmake b/toolchain/Android.cmake index 11687c7e..eeeea540 100644 --- a/toolchain/Android.cmake +++ b/toolchain/Android.cmake @@ -27,9 +27,9 @@ # ===== # # To use this file, you need to set the ``CMAKE_TOOLCHAIN_FILE`` to point to -# ``AndroidToolchain.cmake`` on the command line:: +# ``Android.cmake`` on the command line:: # -# cmake -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/AndroidToolchain.cmake +# cmake -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/Android.cmake # # You will also need to provide the locations of the Android NDK and SDK. This # can be done on the commandline or with environment variables; in either case @@ -66,7 +66,7 @@ # the prefix ``/opt/android/foo``, you would use:: # # cmake \ -# -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/AndroidToolchain.cmake \ +# -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/Android.cmake \ # -DECM_ADDITIONAL_FIND_ROOT_PATH="/opt/android/Qt5/5.7/android_armv7;/opt/android/foo" # # If your project uses ``find_package()`` to locate build tools on the host @@ -90,7 +90,7 @@ # For example, you could do:: # # cmake \ -# -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/AndroidToolchain.cmake \ +# -DCMAKE_TOOLCHAIN_FILE=/usr/share/ECM/toolchain/Android.cmake \ # -DQTANDROID_EXPORTED_TARGET=myapp \ # -DANDROID_APK_DIR=myapp-apk # make |