mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 14:27:23 +00:00
8c0afaf450
Extend the Nsight Tegra project generator to add bunch of properties with the backing variables to fine-tune the generated projects. Add target properties that map to all "Configuration" PropertyGroups for each configuration: * ANDROID_ARCH * ANDROID_STL_TYPE Add target properties that map to the AntBuild section of vcxproj files: * ANDROID_ANT_ADDITIONAL_OPTIONS * ANDROID_ASSETS_DIRECTORIES * ANDROID_JAR_DEPENDENCIES * ANDROID_JAR_DIRECTORIES * ANDROID_JAVA_SOURCE_DIR * ANDROID_NATIVE_LIB_DEPENDENCIES * ANDROID_NATIVE_LIB_DIRECTORIES * ANDROID_PROCESS_MAX * ANDROID_PROGUARD * ANDROID_PROGUARD_CONFIG_PATH * ANDROID_SECURE_PROPS_PATH * ANDROID_SKIP_ANT_STEP Reviewed-by: Dmitry Polyanitsa <dpolyanitsa@nvidia.com>
18 lines
467 B
ReStructuredText
18 lines
467 B
ReStructuredText
ANDROID_ARCH
|
|
------------
|
|
|
|
Set the Android target architecture.
|
|
|
|
This is a string property that could be set to the one of
|
|
the following values:
|
|
|
|
* ``armv7-a``: "ARMv7-A (armv7-a)"
|
|
* ``armv7-a-hard``: "ARMv7-A, hard-float ABI (armv7-a)"
|
|
* ``arm64-v8a``: "ARMv8-A, 64bit (arm64-v8a)"
|
|
* ``x86``: "x86 (x86)"
|
|
* ``x86_64``: "x86_64 (x86_64)"
|
|
|
|
This property is initialized by the value of the
|
|
:variable:`CMAKE_ANDROID_ARCH` variable if it is set
|
|
when a target is created.
|