From 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Sun, 19 May 2024 09:41:03 -0500 Subject: SCons: Convert platform `get_flags` to dictionary --- platform/android/detect.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'platform/android/detect.py') diff --git a/platform/android/detect.py b/platform/android/detect.py index 485f31dee2..ed0ceb5862 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -67,11 +67,11 @@ def get_min_target_api(): def get_flags(): - return [ - ("arch", "arm64"), # Default for convenience. - ("target", "template_debug"), - ("supported", ["mono"]), - ] + return { + "arch": "arm64", # Default for convenience. + "target": "template_debug", + "supported": ["mono"], + } # Check if Android NDK version is installed -- cgit v1.2.3