Page 2 of 2

Re: Help us add SSL to Love2D

Posted: Thu Dec 15, 2022 10:45 pm
by Gunroar:Cannon()
All of this leads to one thought
...
...

"Where love 12"
Image

Okay, for real though, are there prebuilt .dll and .so files available for download without ... building (building them is hard for me :cry:).
And besides that what do you mean by copying the files to the save directory. Can't they just be in the .love file next to main.lua and the require would work?

Re: Help us add SSL to Love2D

Posted: Thu Dec 15, 2022 11:29 pm
by slime
Gunroar:Cannon() wrote: Thu Dec 15, 2022 10:45 pm "Where love 12"

Okay, for real though, are there prebuilt .dll and .so files available for download without ... building (building them is hard for me :cry:).
You can download automatically created builds of love 12 here: https://github.com/love2d/love/actions? ... evelopment (click on the latest item in the list, and then scroll down to the Artifacts section. You might need to be logged into Github to have download links there.)

Similarly you can download automatically created builds of the standalone lua-https library usable with love 11, here: https://github.com/love2d/lua-https/act ... nch%3Amain

Gunroar:Cannon() wrote: Thu Dec 15, 2022 10:45 pmCan't they just be in the .love file next to main.lua and the require would work?
Operating systems cannot load/run executable library files (.dlls, etc) from inside a zip / .love file in a single step. They have to be available directly on a hard drive for the OS library loading functions to work.