-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathbuild.lua
42 lines (37 loc) · 864 Bytes
/
build.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
local neblua = require("lib.neblua")
neblua.bundle {
entry = "entry.iconCursor",
output = "./icon-and-cursor/Export as ico cur ani.lua",
include = {
"./entry/iconCursor.lua",
},
rootDir = "./src",
fallbackStderr = true,
}
neblua.bundle {
entry = "entry.lcdFilter",
output = "./lcd-pixel-filter/LCD Pixel Filter.lua",
include = {
"./entry/lcdFilter.lua",
},
rootDir = "./src",
fallbackStderr = true,
}
neblua.bundle {
entry = "entry.psd",
output = "./psd/Export as psd.lua",
include = {
"./entry/psd.lua",
},
rootDir = "./src",
fallbackStderr = true,
}
neblua.bundle {
entry = "entry.smoothFilter",
output = "./smooth-filter/Smooth Filter.lua",
include = {
"./entry/smoothFilter.lua",
},
rootDir = "./src",
fallbackStderr = true,
}