forked from KAT-Advanced-Medical/KAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhemtt.toml
64 lines (52 loc) · 1.21 KB
/
hemtt.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
54
55
56
57
58
59
60
61
62
63
64
name = "KAM"
prefix = "kat"
author = "Katalam, Tomcat, Kygan, YetheSamartaka, Battlekeeper, MJSTIC, Digii / Julian and MiszczuZPolski"
template = "cba"
mainprefix = "x"
include = ["./include"]
files = [
"mod.cpp",
"README.md",
"LICENSE.md",
"Arma3_workshop_addon.png",
"larynx.paa",
"AUTHORS.txt",
"logo.jpg"
]
folder_optionals = true
sig_version = 3
exclude = ["*.psd", "*.png", "*.tga"]
modname = "{{name}}"
key_name = "{{prefix}}_{{version}}"
authority = "{{prefix}}_{{version}}-{{git \"id 8\"}}"
check = [
"!compile_scripts"
]
postbuild = [
"!remove_compiled_scripts"
]
releasebuild = [
"@zip @kat_{{version}}"
]
[header_exts]
version = "{{git \"id 8\"}}"
[scripts.compile_scripts]
steps_windows = [
"echo 'Compile Arma Scripts'",
"ArmaScriptCompiler.exe"
]
steps_linux = [
"echo 'Compiling Arma Scripts does not work yet on Linux'"
]
only_release = true
show_output = false
[scripts.remove_compiled_scripts]
steps_windows = [
"echo 'remove Compiled Scripts'",
"powershell -Command Remove-Item './addons/*' -Recurse -Include *.sqfc"
]
steps_linux = [
"echo 'Compiling Arma Scripts does not work yet on Linux'"
]
only_release = true
show_output = true