-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildQMOD.ps1
74 lines (52 loc) · 1.66 KB
/
buildQMOD.ps1
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
65
66
67
68
69
70
71
72
73
74
Param(
[String] $qmodname="QuestSounds",
[Parameter(Mandatory=$false)]
[Switch] $clean,
[Parameter(Mandatory=$false)]
[Switch] $help,
[Parameter(Mandatory=$false)]
[Switch] $package,
[Parameter(Mandatory=$false)]
[Switch] $dev,
[Parameter(Mandatory=$false)]
[Switch] $release = $false
)
# Builds a .qmod file for loading with QP or BMBF
if ($help -eq $true) {
echo "`"BuildQmod <qmodName>`" - Copiles your mod into a `".so`" or a `".a`" library"
echo "`n-- Parameters --`n"
echo "qmodName `t The file name of your qmod"
echo "`n-- Arguments --`n"
echo "-Clean `t`t Performs a clean build on both your library and the qmod"
exit
}
if ($qmodName -eq "")
{
echo "Give a proper qmod name and try again"
exit
}
if (($args.Count -eq 0 -or $dev -eq $true) -And $package -eq $false) {
echo "Packaging QMod $qmodName"
& $PSScriptRoot/build.ps1 -clean:$clean -release:$release
if ($LASTEXITCODE -ne 0) {
echo "Failed to build, exiting..."
exit $LASTEXITCODE
}
}
$qpmsharedJson = Get-Content "./qpm.shared.json" -Raw | ConvertFrom-Json
if ($package -eq $true) {
$qmodName = "$($env:module_id)_$($env:version)"
echo "Actions: Packaging QMod $qmodName"
} else {
$qmodName += "_$($qpmsharedJson.config.info.version)"
}
$qmod = $qmodName + ".qmod"
# if ((-not ($clean.IsPresent)) -and (Test-Path $qmod))
# {
# echo "Making Clean Qmod"
# Move-Item $qmod $zip -Force
# }
qpm qmod zip -i ./build/ -i ./extern/libs/ -f ./Cover.jpg -i ./Examples/ $qmod
# Compress-Archive -Path $filelist -DestinationPath $zip -Update
# Move-Item $zip $qmod -Force
echo "Task Completed"