forked from diwako/diwako_dui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hemtt.toml
48 lines (43 loc) · 1.08 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
name = "DUI Squad Radar"
prefix = "diwako_dui"
author = "Diwako"
files = [
"mod.cpp"
]
exclude = [
"*.psd",
"*.png",
"*.tga"
]
# prebuild = ["!compile_scripts"]
# postbuild = ["!sign","!copy","!remove_compiled_scripts"]
releasebuild = [
"@zip @{{prefix}}"
]
[scripts.copy]
foreach = true
only_release = false
steps = [
"COPY {{target}} D:\\SteamLibrary\\steamapps\\common\\\"Arma 3\"\\@diwako_dui\\addons\\",
"COPY {{target}}.diwako_dui.bisign D:\\SteamLibrary\\steamapps\\common\\\"Arma 3\"\\@diwako_dui\\addons\\"
]
[scripts.sign]
foreach = true
only_release = false
steps = [
"G:\\\"Program Files (x86)\"\\Steam\\steamapps\\common\\\"Arma 3 Tools\"\\DSSignFile\\DSSignFile.exe diwako_dui.biprivatekey {{target}}"
]
[scripts.compile_scripts]
steps_windows = [
"echo 'Compile Arma Scripts'",
"ArmaScriptCompiler"
]
only_release = false
show_output = true
[scripts.remove_compiled_scripts]
steps_windows = [
"echo 'remove Compiled Scripts'",
"powershell -Command Remove-Item './addons/*' -Recurse -Include *.sqfc"
]
only_release = false
show_output = true