summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-10-13 12:43:59 +0000
committerKitware Robot <kwrobot@kitware.com>2020-10-13 08:44:04 -0400
commit33ad20b8f9338bd374e314d8af847ca6ef4a8453 (patch)
treec301d60549913436dd6fc4c3688ec6e8c763cb56
parent01ae8149b83bedc71f6f662e21edc7307a66c01f (diff)
parent8e4aa63c7b784a88c23cc844300b90a964e4e2e4 (diff)
downloadcmake-33ad20b8f9338bd374e314d8af847ca6ef4a8453.tar.gz
Merge topic 'android-api-level-range' into release-3.19
8e4aa63c7b Android: show supported API level in error message Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5358
-rw-r--r--Modules/Platform/Android-Determine.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/Platform/Android-Determine.cmake b/Modules/Platform/Android-Determine.cmake
index 58905dfabe..f7d8d1332a 100644
--- a/Modules/Platform/Android-Determine.cmake
+++ b/Modules/Platform/Android-Determine.cmake
@@ -412,7 +412,8 @@ if(CMAKE_SYSTEM_VERSION)
if(CMAKE_SYSTEM_VERSION GREATER NDK_MAX_PLATFORM_LEVEL OR
CMAKE_SYSTEM_VERSION LESS NDK_MIN_PLATFORM_LEVEL)
message(FATAL_ERROR
- "Android: The API level ${CMAKE_SYSTEM_VERSION} is not supported by the NDK."
+ "Android: The API level ${CMAKE_SYSTEM_VERSION} is not supported by the NDK.\n"
+ "Choose one in the range of [${NDK_MIN_PLATFORM_LEVEL}, ${NDK_MAX_PLATFORM_LEVEL}]."
)
endif()
else()