summaryrefslogtreecommitdiffstats
path: root/platform/macos
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-05-19 09:41:03 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-05-22 13:53:20 -0500
commit896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (patch)
tree81f43222f70b7fe9ef9391528805a47838873d03 /platform/macos
parent8e2141eac534f6984bb0bdbcefbd17de27ae0993 (diff)
downloadredot-engine-896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e.tar.gz
SCons: Convert platform `get_flags` to dictionary
Diffstat (limited to 'platform/macos')
-rw-r--r--platform/macos/detect.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/macos/detect.py b/platform/macos/detect.py
index f02f693dd9..70cb00c6ff 100644
--- a/platform/macos/detect.py
+++ b/platform/macos/detect.py
@@ -53,11 +53,11 @@ def get_doc_path():
def get_flags():
- return [
- ("arch", detect_arch()),
- ("use_volk", False),
- ("supported", ["mono"]),
- ]
+ return {
+ "arch": detect_arch(),
+ "use_volk": False,
+ "supported": ["mono"],
+ }
def configure(env: "SConsEnvironment"):