Android: Add ANDROID variable to indicate the target

Allow projects to use `if(ANDROID)` to condition their Android-specific
code paths.
This commit is contained in:
Brad King
2016-08-23 13:08:53 -04:00
parent c2f561e58c
commit 7b637ebdc9
4 changed files with 12 additions and 0 deletions
+1
View File
@@ -173,6 +173,7 @@ Variables that Describe the System
.. toctree::
:maxdepth: 1
/variable/ANDROID
/variable/APPLE
/variable/BORLAND
/variable/CMAKE_CL_64
+5
View File
@@ -0,0 +1,5 @@
ANDROID
-------
Set to ``1`` when the target system (:variable:`CMAKE_SYSTEM_NAME`) is
``Android``.