Skip to content
New issue

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

format of dependencies of gdextension #28

Open
eeyzs1 opened this issue Aug 31, 2024 · 3 comments
Open

format of dependencies of gdextension #28

eeyzs1 opened this issue Aug 31, 2024 · 3 comments

Comments

@eeyzs1
Copy link

eeyzs1 commented Aug 31, 2024

old format:
[dependencies]
windows.debug.x86_64 = ["bin/windows/EOSSDK-Win64-Shipping.dll", "bin/windows/x64/xaudio2_9redist.dll"]
windows.release.x86_64 = ["bin/windows/EOSSDK-Win64-Shipping.dll", "bin/windows/x64/xaudio2_9redist.dll"]
After checked the correct
format should be like:
[dependencies]
windows.debug.x86_64 = {"bin/windows/EOSSDK-Win64-Shipping.dll":"", "bin/windows/x64/xaudio2_9redist.dll":""}
windows.release.x86_64 = {"bin/windows/EOSSDK-Win64-Shipping.dll":"", "bin/windows/x64/xaudio2_9redist.dll":""}

By the way, I didnt find where is the source code that used to generate this file, could you please tell me how did you generate it? Im also curious about it.

@3ddelano
Copy link
Owner

What's in mediafire, seems sus?

@3ddelano
Copy link
Owner

old format: [dependencies] windows.debug.x86_64 = ["bin/windows/EOSSDK-Win64-Shipping.dll", "bin/windows/x64/xaudio2_9redist.dll"] windows.release.x86_64 = ["bin/windows/EOSSDK-Win64-Shipping.dll", "bin/windows/x64/xaudio2_9redist.dll"] After checked the correct format should be like: [dependencies] windows.debug.x86_64 = {"bin/windows/EOSSDK-Win64-Shipping.dll":"", "bin/windows/x64/xaudio2_9redist.dll":""} windows.release.x86_64 = {"bin/windows/EOSSDK-Win64-Shipping.dll":"", "bin/windows/x64/xaudio2_9redist.dll":""}

By the way, I didnt find where is the source code that used to generate this file, could you please tell me how did you generate it? Im also curious about it.

There isn't a generator for it, I manually copied from another gdextension template project.

@eeyzs1
Copy link
Author

eeyzs1 commented Sep 4, 2024

Alright, after fix you can close this ticket.
you can follow the official doc to fix it:
https://docs.godotengine.org/en/latest/tutorials/scripting/gdextension/gdextension_file.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@3ddelano @eeyzs1 and others