diff options
author | Brad King <brad.king@kitware.com> | 2016-06-23 19:18:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-12 14:40:54 (GMT) |
commit | 504db72d99fc2302de605fd9c2f845c1b8865500 (patch) | |
tree | c7c0e5fd0d5a5e6e1762c60a36eac7bf5cf5062b /Modules/Platform/Android-GNU.cmake | |
parent | fa6325782112063b5d425714a37c8ebd01b90d7c (diff) | |
download | CMake-504db72d99fc2302de605fd9c2f845c1b8865500.zip CMake-504db72d99fc2302de605fd9c2f845c1b8865500.tar.gz CMake-504db72d99fc2302de605fd9c2f845c1b8865500.tar.bz2 |
Android: Add placeholders for compiler/abi-specific settings
The Android NDK source repository at
https://android.googlesource.com/platform/ndk.git
has `<ndk>/build/core/toolchains/*/setup.mk` files that store tables of
information for their build system. Add an equivalent file for each
compiler/abi combination.
Diffstat (limited to 'Modules/Platform/Android-GNU.cmake')
-rw-r--r-- | Modules/Platform/Android-GNU.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Platform/Android-GNU.cmake b/Modules/Platform/Android-GNU.cmake index 8c3ea1d..58943d0 100644 --- a/Modules/Platform/Android-GNU.cmake +++ b/Modules/Platform/Android-GNU.cmake @@ -36,6 +36,8 @@ endif() include(Platform/Android-Common) +include(Platform/Android/abi-${CMAKE_ANDROID_ARCH_ABI}-GNU) + macro(__android_compiler_gnu lang) __android_compiler_common(${lang}) endmacro() |