@@ -338,18 +338,18 @@ loaded for each platform and the entry function for the module. It is called ``g
338338
339339    [libraries] 
340340
341-     macos.debug = "res://bin/ libgdexample.macos.template_debug.framework " 
342-     macos.release = "res://bin/ libgdexample.macos.template_release.framework " 
343-     windows.debug.x86_32 = "res://bin/libgdexample .windows.template_debug.x86_32.dll" 
344-     windows.release.x86_32 = "res://bin/libgdexample .windows.template_release.x86_32.dll" 
345-     windows.debug.x86_64 = "res://bin/libgdexample .windows.template_debug.x86_64.dll" 
346-     windows.release.x86_64 = "res://bin/libgdexample .windows.template_release.x86_64.dll" 
347-     linux.debug.x86_64 = "res://bin /libgdexample.linux.template_debug.x86_64.so" 
348-     linux.release.x86_64 = "res://bin /libgdexample.linux.template_release.x86_64.so" 
349-     linux.debug.arm64 = "res://bin /libgdexample.linux.template_debug.arm64.so" 
350-     linux.release.arm64 = "res://bin /libgdexample.linux.template_release.arm64.so" 
351-     linux.debug.rv64 = "res://bin /libgdexample.linux.template_debug.rv64.so" 
352-     linux.release.rv64 = "res://bin /libgdexample.linux.template_release.rv64.so" 
341+     macos.debug = "./ libgdexample.macos.template_debug.dylib " 
342+     macos.release = "./ libgdexample.macos.template_release.dylib " 
343+     windows.debug.x86_32 = "./gdexample .windows.template_debug.x86_32.dll" 
344+     windows.release.x86_32 = "./gdexample .windows.template_release.x86_32.dll" 
345+     windows.debug.x86_64 = "./gdexample .windows.template_debug.x86_64.dll" 
346+     windows.release.x86_64 = "./gdexample .windows.template_release.x86_64.dll" 
347+     linux.debug.x86_64 = ". /libgdexample.linux.template_debug.x86_64.so" 
348+     linux.release.x86_64 = ". /libgdexample.linux.template_release.x86_64.so" 
349+     linux.debug.arm64 = ". /libgdexample.linux.template_debug.arm64.so" 
350+     linux.release.arm64 = ". /libgdexample.linux.template_release.arm64.so" 
351+     linux.debug.rv64 = ". /libgdexample.linux.template_debug.rv64.so" 
352+     linux.release.rv64 = ". /libgdexample.linux.template_release.rv64.so" 
353353
354354 This file contains a ``configuration `` section that controls the entry function of the module.
355355You should also set the minimum compatible Godot version with ``compatibility_minimum ``,
@@ -363,10 +363,7 @@ also result in *just* that file being exported when you export the project,
363363which means the data pack won't contain libraries that are incompatible with the
364364target platform.
365365
366- Finally, the ``dependencies `` section allows you to name additional dynamic
367- libraries that should be included as well. This is important when your GDExtension
368- plugin implements someone else's library and requires you to supply a
369- third-party dynamic library with your project.
366+ You can learn more about .gdextension files at :ref: `doc_gdextension_file `.
370367
371368Here is another overview to check the correct file structure:
372369
0 commit comments