You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
get_export_platform()->add_message(EditorExportPlatform::EXPORT_MESSAGE_WARNING, TTR("GDExtension"), vformat(TTR("No suitable library found for GDExtension: \"%s\". Possible feature flags for your platform: %s"), p_path, String(", ").join(features_vector)));
for (const SharedObject &shared_object : dependencies_shared_objects) {
138
155
_add_shared_object(shared_object);
139
156
}
140
157
}
158
+
159
+
for (const KeyValue<String, FoundLibInfo> &E : libs_found) {
160
+
if (E.value.count == 0) {
161
+
if (get_export_platform().is_valid()) {
162
+
get_export_platform()->add_message(EditorExportPlatform::EXPORT_MESSAGE_WARNING, TTR("GDExtension"), vformat(TTR("No \"%s\" library found for GDExtension: \"%s\". Possible feature flags for your platform: %s"), E.key, p_path, String(", ").join(features_vector)));
163
+
}
164
+
} elseif (E.value.count > 1) {
165
+
if (get_export_platform().is_valid()) {
166
+
get_export_platform()->add_message(EditorExportPlatform::EXPORT_MESSAGE_WARNING, TTR("GDExtension"), vformat(TTR("Multiple \"%s\" libraries found for GDExtension: \"%s\": \"%s\"."), E.key, p_path, String(", ").join(E.value.libs)));
0 commit comments