diff options
author | Nicolas Fella <nicolas.fella@gmx.de> | 2020-05-19 15:05:50 +0000 |
---|---|---|
committer | Nicolas Fella <nicolas.fella@gmx.de> | 2020-05-19 15:05:50 +0000 |
commit | 571bdc218a142c0c8977b2c668a544c27e2af327 (patch) | |
tree | 4097df39791eb664cc7129e75dccfba784661694 | |
parent | b4ee9ecbaf04a95ecadff5e0cd65a64373094586 (diff) | |
download | extra-cmake-modules-5.71.0-rc3.tar.gz extra-cmake-modules-5.71.0-rc3.tar.bz2 |
[android] Use newer Qt version in examplev5.71.0-rc3v5.71.0-rc2v5.71.0-rc1v5.71.0
-rw-r--r-- | toolchain/Android.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolchain/Android.cmake b/toolchain/Android.cmake index 5f1d96f8..82322e48 100644 --- a/toolchain/Android.cmake +++ b/toolchain/Android.cmake @@ -55,13 +55,13 @@ # prefixes of those libraries would be passed as alternative roots as list via # ``ECM_ADDITIONAL_FIND_ROOT_PATH``. Since 5.30.0. # -# For example, for integrating a Qt5 for Android with armv7 target present at -# ``/opt/android/Qt5/5.7/android_armv7`` and some other libraries installed to +# For example, for integrating a Qt5 for Android present at +# ``~/Qt/5.14.2/android/`` and some other libraries installed to # the prefix ``/opt/android/foo``, you would use:: # # 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" +# -DECM_ADDITIONAL_FIND_ROOT_PATH="~/Qt/5.14.2/android/;/opt/android/foo" # # If your project uses ``find_package()`` to locate build tools on the host # system, make sure to pass ``CMAKE_FIND_ROOT_PATH_BOTH`` or |