diff options
author | Haibo Huang <hhb@google.com> | 2020-10-27 22:08:00 (GMT) |
---|---|---|
committer | Haibo Huang <hhb@google.com> | 2020-10-30 00:52:41 (GMT) |
commit | 707a06761fbceba35bf52d943a8fab2c76e79717 (patch) | |
tree | 85c9723b6c5329ebae10cd6a1a38dc7945e4c757 /Modules/Platform/Android | |
parent | 32d369aa7049c4921d3c35ca8097bc0485866be6 (diff) | |
download | CMake-707a06761fbceba35bf52d943a8fab2c76e79717.zip CMake-707a06761fbceba35bf52d943a8fab2c76e79717.tar.gz CMake-707a06761fbceba35bf52d943a8fab2c76e79717.tar.bz2 |
Android: add NDK hooks
This change adds hooks to key Android support files, so that NDK can
inject information or change cmake behaviors.
Diffstat (limited to 'Modules/Platform/Android')
-rw-r--r-- | Modules/Platform/Android/Determine-Compiler.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Modules/Platform/Android/Determine-Compiler.cmake b/Modules/Platform/Android/Determine-Compiler.cmake index f9c2d89..f8eae62 100644 --- a/Modules/Platform/Android/Determine-Compiler.cmake +++ b/Modules/Platform/Android/Determine-Compiler.cmake @@ -7,6 +7,12 @@ if(__ANDROID_DETERMINE_COMPILER) endif() set(__ANDROID_DETERMINE_COMPILER 1) +# Include the NDK hook. +# It can be used by NDK to inject necessary fixes for an earlier cmake. +if(CMAKE_ANDROID_NDK) + include(${CMAKE_ANDROID_NDK}/build/cmake/hooks/pre/Determine-Compiler.cmake OPTIONAL) +endif() + # Support for NVIDIA Nsight Tegra Visual Studio Edition was previously # implemented in the CMake VS IDE generators. Avoid interfering with # that functionality for now. Later we may try to integrate this. @@ -83,3 +89,9 @@ set(CMAKE_${lang}_ANDROID_TOOLCHAIN_SUFFIX \"${_ANDROID_TOOL_${lang}_TOOLCHAIN_S ") endif() endmacro() + +# Include the NDK hook. +# It can be used by NDK to inject necessary fixes for an earlier cmake. +if(CMAKE_ANDROID_NDK) + include(${CMAKE_ANDROID_NDK}/build/cmake/hooks/post/Determine-Compiler.cmake OPTIONAL) +endif() |