We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824d501 commit 25c77adCopy full SHA for 25c77ad
contributing/development/core_and_modules/binding_to_external_libraries.rst
@@ -169,9 +169,9 @@ environment's paths:
169
# LIBPATH and LIBS need to be set on the real "env" (not the clone)
170
# to link the specified libraries to the Godot executable.
171
172
- # This is a path relative to /modules/tts/ where your .a libraries reside.
173
- # If you are compiling the module externally (not in the godot source tree),
174
- # these will need to be full paths.
+ # This is an absolute path where your .a libraries reside.
+ # If using a relative path, you must convert it to a
+ # full path using an utility function, such as `Dir('...').abspath`.
175
env.Append(LIBPATH=[Dir('libpath').abspath])
176
177
# Check with the documentation of the external library to see which library
0 commit comments