summaryrefslogtreecommitdiffstats
path: root/modules/mono/config.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-08-21 08:58:18 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-08-21 22:53:34 +0200
commit6e9bcc0f18becbed199ad48d3dec01621dc39237 (patch)
tree7caaeceee5ea3dadbada1ac1b8b29e9681efe638 /modules/mono/config.py
parent5ca419e32c58e671284b3b7f91257179657d9114 (diff)
downloadredot-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.py6
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")