3ddelano / epic-online-services-godot

Unofficial Epic Online Services wrapper for Godot Engine 4.2 (EOSG) (includes demo project)
MIT License
165 stars 11 forks source link

format of dependencies of gdextension #28

Open eeyzs1 opened 2 weeks ago

eeyzs1 commented 2 weeks ago

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 commented 2 weeks ago

What's in mediafire, seems sus?

3ddelano commented 2 weeks ago

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 commented 1 week ago

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