diff options
| author | Juan Ramos <juan@lunarg.com> | 2023-11-07 12:04:14 -0700 |
|---|---|---|
| committer | Juan Ramos <114601453+juan-lunarg@users.noreply.github.com> | 2023-11-07 12:28:47 -0700 |
| commit | a4498f9ce35a7c8d87d38bd609d42081a5fc7d4d (patch) | |
| tree | e6be7fc1da5d48ff23119c491df3616e6330aef6 /scripts/android.py | |
| parent | 47d91ad31f3cfc39b7389228ed8498a220ad1186 (diff) | |
| download | usermoji-a4498f9ce35a7c8d87d38bd609d42081a5fc7d4d.tar.xz | |
Remove --tests from android.puy
Barely makes sense for VVL. Makes no sense here to have here.
Diffstat (limited to 'scripts/android.py')
| -rwxr-xr-x | scripts/android.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/android.py b/scripts/android.py index f976a2f5..20cc69d4 100755 --- a/scripts/android.py +++ b/scripts/android.py @@ -108,7 +108,6 @@ def main(): parser.add_argument('--app-abi', dest='android_abi', type=str, default="arm64-v8a") parser.add_argument('--app-stl', dest='android_stl', type=str, choices=["c++_static", "c++_shared"], default="c++_static") parser.add_argument('--apk', action='store_true', help='Generate an APK as a post build step.') - parser.add_argument('--tests', action='store_true', help='Build tests.') parser.add_argument('--clean', action='store_true', help='Cleans CMake build artifacts') args = parser.parse_args() @@ -116,7 +115,6 @@ def main(): android_abis = args.android_abi.split(" ") android_stl = args.android_stl create_apk = args.apk - build_tests = args.tests clean = args.clean if "ANDROID_NDK_HOME" not in os.environ: @@ -181,7 +179,6 @@ def main(): cmake_cmd += f' -D CMAKE_TOOLCHAIN_FILE={android_toolchain}' cmake_cmd += f' -D CMAKE_ANDROID_ARCH_ABI={abi}' cmake_cmd += f' -D CMAKE_INSTALL_LIBDIR={lib_dir}' - cmake_cmd += f' -D BUILD_TESTS={build_tests}' cmake_cmd += f' -D CMAKE_ANDROID_STL_TYPE={android_stl}' cmake_cmd += ' -D ANDROID_PLATFORM=26' |
