From a4498f9ce35a7c8d87d38bd609d42081a5fc7d4d Mon Sep 17 00:00:00 2001 From: Juan Ramos Date: Tue, 7 Nov 2023 12:04:14 -0700 Subject: Remove --tests from android.puy Barely makes sense for VVL. Makes no sense here to have here. --- scripts/android.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'scripts') 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' -- cgit v1.2.3