mirror of
https://github.com/godotengine/godot-cpp.git
synced 2025-12-31 01:48:45 +03:00
50 lines
1.7 KiB
CMake
50 lines
1.7 KiB
CMake
#[=======================================================================[.rst:
|
|
Android
|
|
-------
|
|
|
|
This file contains functions for options and configuration for targeting the
|
|
Android platform
|
|
|
|
Configuration of the Android toolchain is done using toolchain files,
|
|
CMakePresets, or variables on the command line.
|
|
|
|
The `Android SDK`_ provides toolchain files to help with configuration.
|
|
|
|
CMake has its own `built-in support`_ for cross compiling to the
|
|
Android platforms.
|
|
|
|
.. warning::
|
|
|
|
Android does not support or test the CMake built-in workflow, recommend
|
|
using their toolchain file.
|
|
|
|
.. _Android SDK:https://developer.android.com/ndk/guides/cmake
|
|
|
|
.. _built-in support:https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html#cross-compiling-for-android
|
|
|
|
There is further information and examples in the docs: https://docs.godotengine.org/en/latest/tutorials/scripting/cpp/build_system/cmake.html
|
|
|
|
]=======================================================================]
|
|
|
|
#[============================[ Android Options ]============================]
|
|
function(android_options)
|
|
#[[ Options from SCons
|
|
|
|
The options below are managed by CMake toolchain files, the docs have more information:
|
|
https://docs.godotengine.org/en/latest/tutorials/scripting/cpp/build_system/cmake.html
|
|
|
|
android_api_level : Target Android API level.
|
|
Default = 24
|
|
|
|
ANDROID_HOME : Path to your Android SDK installation.
|
|
Default = os.environ.get("ANDROID_HOME", os.environ.get("ANDROID_SDK_ROOT")
|
|
]]
|
|
endfunction()
|
|
|
|
#[===========================[ Target Generation ]===========================]
|
|
function(android_generate)
|
|
target_compile_definitions(godot-cpp PUBLIC ANDROID_ENABLED UNIX_ENABLED)
|
|
|
|
common_compiler_flags()
|
|
endfunction()
|