-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakelove.toml
53 lines (44 loc) · 1.01 KB
/
makelove.toml
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
43
44
45
46
47
48
49
50
51
52
53
name = "PngApp"
love_files = [
"::git-ls-tree::",
"-*/.*",
"-./build",
"-./libs/*"
]
# build for win64, linux, and macos (TODO)
default_targets = ["win64", "appimage", "macos"]
build_directory = "build"
[archive_files]
"Readme.md" = "Readme.md"
"LICENSE" = "LICENSE"
[windows]
[windows.exe_metadata]
FileDescription = "{name} {version}"
FileVersion = "{version}"
CompanyName = "Marcus Collins"
LegalCopyright = ""
ProductName = "{name}"
ProductVersion = "{version}"
OriginalFilename = "{name}.exe"
[win64]
shared_libraries = [
"libs/win64/nuklear.dll"
]
[linux]
[linux.desktop_file_metadata]
Comment = "A PngTuber app made with Love"
Categories = "Game;"
[appimage]
shared_libraries = [
"libs/linux-x86_64/nuklear.so"
]
[macos]
[hooks]
postbuild = [
"chmod +x ./scripts/postbuild_macos.sh && ./scripts/postbuild_macos.sh"
]
[macos.app_metadata]
CFBundleName = "pngapp"
CFBundleIdentifier = "pngapp"
NSHumanReadableCopyright = "Copyright © 2022 Marcus Collins"
CFBundleShortVersionString = "{version}"