VS: Add more Nsight Tegra generator Android property settings

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>
This commit is contained in:
Mikhail Filimonov
2015-06-25 20:15:06 +03:00
committed by Brad King
parent 7a40998329
commit 8c0afaf450
36 changed files with 510 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_ANT_ADDITIONAL_OPTIONS
------------------------------------
Default value for the :prop_tgt:`ANDROID_ANT_ADDITIONAL_OPTIONS` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_ARCH
------------------
Default value for the :prop_tgt:`ANDROID_ARCH` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_ASSETS_DIRECTORIES
--------------------------------
Default value for the :prop_tgt:`ANDROID_ASSETS_DIRECTORIES` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_JAR_DEPENDENCIES
------------------------------
Default value for the :prop_tgt:`ANDROID_JAR_DEPENDENCIES` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_JAR_DIRECTORIES
-----------------------------
Default value for the :prop_tgt:`ANDROID_JAR_DIRECTORIES` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_JAVA_SOURCE_DIR
-----------------------------
Default value for the :prop_tgt:`ANDROID_JAVA_SOURCE_DIR` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_NATIVE_LIB_DEPENDENCIES
-------------------------------------
Default value for the :prop_tgt:`ANDROID_NATIVE_LIB_DEPENDENCIES` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_NATIVE_LIB_DIRECTORIES
------------------------------------
Default value for the :prop_tgt:`ANDROID_NATIVE_LIB_DIRECTORIES` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_PROCESS_MAX
-------------------------
Default value for the :prop_tgt:`ANDROID_PROCESS_MAX` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_PROGUARD
----------------------
Default value for the :prop_tgt:`ANDROID_PROGUARD` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_PROGUARD_CONFIG_PATH
----------------------------------
Default value for the :prop_tgt:`ANDROID_PROGUARD_CONFIG_PATH` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_SECURE_PROPS_PATH
-------------------------------
Default value for the :prop_tgt:`ANDROID_SECURE_PROPS_PATH` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_SKIP_ANT_STEP
---------------------------
Default value for the :prop_tgt:`ANDROID_SKIP_ANT_STEP` target property.
See that target property for additional information.

View File

@@ -0,0 +1,5 @@
CMAKE_ANDROID_STL_TYPE
----------------------
Default value for the :prop_tgt:`ANDROID_STL_TYPE` target property.
See that target property for additional information.