diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-21 08:58:18 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-21 22:53:34 +0200 |
commit | 6e9bcc0f18becbed199ad48d3dec01621dc39237 (patch) | |
tree | 7caaeceee5ea3dadbada1ac1b8b29e9681efe638 /modules/mono/config.py | |
parent | 5ca419e32c58e671284b3b7f91257179657d9114 (diff) | |
download | redot-engine-6e9bcc0f18becbed199ad48d3dec01621dc39237.tar.gz |
SCons: Better validation for platform-specific opt-in drivers
This replaces cryptic compilation errors with a clear error message
and early build termination.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index 5ebdb83b36..0573fc662a 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -11,9 +11,11 @@ def can_build(env, platform): def configure(env): # Check if the platform has marked mono as supported. supported = env.get("supported", []) - if "mono" not in supported: - raise RuntimeError("This module does not currently support building for this platform") + import sys + + print("The 'mono' module does not currently support building for this platform. Aborting.") + sys.exit(255) env.add_module_version_string("mono") |