mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Disable asset library compilation if no openssl exists
This commit is contained in:
parent
a3890594fa
commit
d02261fc84
2 changed files with 8 additions and 0 deletions
|
|
@ -6381,7 +6381,11 @@ EditorNode::EditorNode() {
|
|||
add_editor_plugin( memnew( CanvasItemEditorPlugin(this) ) );
|
||||
add_editor_plugin( memnew( SpatialEditorPlugin(this) ) );
|
||||
add_editor_plugin( memnew( ScriptEditorPlugin(this) ) );
|
||||
#ifdef OPENSSL_ENABLED
|
||||
add_editor_plugin( memnew( AssetLibraryEditorPlugin(this) ) );
|
||||
#else
|
||||
#warning Asset Library will not compile without SSL
|
||||
#endif
|
||||
|
||||
//more visually meaningful to have this later
|
||||
raise_bottom_panel_item(AnimationPlayerEditor::singleton);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue