-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Comments
What's in mediafire, seems sus? |
There isn't a generator for it, I manually copied from another gdextension template project. |
Alright, after fix you can close this ticket. |
Fixed in c9952a1 |
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.
The text was updated successfully, but these errors were encountered: