-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
40 lines (39 loc) · 920 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
return {
name = "Project Andromeda!",
developer = "KiwiStationStudios",
output = "./export",
version = "0.0.1",
love = "11.5",
ignore = {
"export",
"boot.cmd",
".gitignore",
".gitattribute",
".commitid",
"icon_old.png",
"docs",
".VSCodeCounter",
"project",
"gjassets",
"README.md",
"icon.png"
},
icon = "icon.png",
identifier = "com.kiwistationstudios.projectandromeda",
libs = {
windows = {
"bin/win/https.dll",
"bin/win/discord-rpc.dll"
},
macos = {
"bin/macos/https.so",
"bin/macos/libdiscord-rpc.dylib"
},
linux = {
"bin/linux/https.so",
"bin/linux/libdiscord-rpc.so"
},
all = {"LICENSE.md"}
},
platforms = {"windows", "linux"}
}