aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/android.py3
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'