mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 22:53:01 +00:00
Improve error message for invalid library feature flags
Fixes https://github.com/godotengine/godot/issues/63227 My version for the error message is: `No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s`
This commit is contained in:
parent
191c8ed12f
commit
f9458f9228
@ -107,7 +107,7 @@ void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p
|
||||
for (const String &E : p_features) {
|
||||
tags.append(E);
|
||||
}
|
||||
ERR_FAIL_MSG(vformat("Couldn't export extension: %s. No suitable library found for export flags: %s", p_path, String(", ").join(tags)));
|
||||
ERR_FAIL_MSG(vformat("No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s", p_path, String(", ").join(tags)));
|
||||
}
|
||||
|
||||
List<String> dependencies;
|
||||
|
Loading…
Reference in New Issue
Block a user