diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-08-23 14:21:45 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-08-23 14:21:45 -0500 |
commit | 1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531 (patch) | |
tree | deb83e1e2d9721c6d9de0785c3c3025fb0024cee /meta.lua | |
parent | b765045914711334269ce9520f90ccd8fea122f1 (diff) | |
download | lua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.tar.gz lua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.tar.bz2 lua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.zip |
Update produces system
Diffstat (limited to '')
-rw-r--r-- | meta.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -31,10 +31,10 @@ for version, link, name, optimization, rel, flag, _, image in cartesian(lua_vers | |||
31 | {"cicd", "image-" .. image}, | 31 | {"cicd", "image-" .. image}, |
32 | }, | 32 | }, |
33 | produces = { | 33 | produces = { |
34 | "lua.exe", | 34 | ["lua.exe"] = true, |
35 | "lua" .. version .. ".dll", | 35 | ["lua" .. version .. ".dll"] = true, |
36 | "liblua.a", | 36 | ["liblua.a"] = true, |
37 | "luac.exe", | 37 | ["luac.exe"] = true, |
38 | }, | 38 | }, |
39 | env = { | 39 | env = { |
40 | CFLAGS = optimization .. " " .. flag, | 40 | CFLAGS = optimization .. " " .. flag, |