We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
any
supersedes #38
the lib generated has this path/name : bin/{platform}/{full_libname}
bin/{platform}/{full_libname}
it is then copied to demo as : demo/bin/{platform}/lib{full_libname} ⭢ notice the extra 'lib' suffix compared to the original lib.
demo/bin/{platform}/lib{full_libname}
meanwhile the .gdextension file expects : demo/bin/lib{full_libname} ⭢ notice the missing {platform} directory in path.
demo/bin/lib{full_libname}
These inconsistencies make the demo nonfunctional as-is. PR #44 is the minimal change to fix this, though it would be convenient if all paths matched.
relevant code : line 79, 85, 91 of SConstruct file demo's .gdextension file
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Godot version
any
godot-cpp version
any
System information
any
Issue description
supersedes #38
the lib generated has this path/name :
bin/{platform}/{full_libname}
it is then copied to demo as :
demo/bin/{platform}/lib{full_libname}
⭢ notice the extra 'lib' suffix compared to the original lib.
meanwhile the .gdextension file expects :
demo/bin/lib{full_libname}
⭢ notice the missing {platform} directory in path.
These inconsistencies make the demo nonfunctional as-is.
PR #44 is the minimal change to fix this, though it would be convenient if all paths matched.
relevant code :
line 79, 85, 91 of SConstruct file
demo's .gdextension file
The text was updated successfully, but these errors were encountered: