https://github.com/26F-Studio/love-luasec/releases
I am trying to add the LuaSec library to my builder script but I need your help.
LuaSec is built for vanilla Lua so adding it Love2D is a little tricky.
The library contains a binary file and 3 lua scripts.
On Windows, we can use the following setup where we just dump everything in the root binaries folder (which is not ideal, but it works):
Code: Select all
/love.exe
/ssl.dll
/ssl.lua
/https.lua
/options.lua
The goal here is to have the same test script running between ALL platforms:
Code: Select all
local https = require('https')
local res,code = https.request('https://google.com')
The license of the project is basically MIT with a credit to the author:
https://github.com/26F-Studio/love-luas ... NSE-luasec