You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
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: