diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-19 00:08:07 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-19 00:08:07 +0100 |
commit | 033821c59576aa1286441aa3a224e2b16c1818e3 (patch) | |
tree | 8faecd2b582bb57f8e2397ae566c71f7da69a7e0 /platform/linuxbsd/detect.py | |
parent | 0f0515a75fec37b2a4af70760c9be99cea781198 (diff) | |
parent | 21e524a798bf3c3728f63657ff2e7a79f6de9ee6 (diff) | |
download | redot-engine-033821c59576aa1286441aa3a224e2b16c1818e3.tar.gz |
Merge pull request #88245 from shana/simplify-mono-support-detection
C#: Let platforms signal if they support the mono module or not
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 8fbd8b10b1..4856076436 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -67,6 +67,7 @@ def get_doc_path(): def get_flags(): return [ ("arch", detect_arch()), + ("supported", ["mono"]), ] |