add mission details, allow specification of float/int from sqf

This commit is contained in:
2023-04-02 13:43:58 -07:00
parent ced02c8bc7
commit 80aa96ed4e
14 changed files with 109 additions and 780 deletions

View File

@@ -1,4 +1,12 @@
build:
export GOARCH="amd64"
export CGO_ENABLED=1
go build -o armago.dll -buildmode=c-shared .
$env:GOARCH="amd64"
$env:CGO_ENABLED=1
go build -o RangerMetrics_x64.so -buildmode=c-shared .
$env:GOARCH = "386"
$env:CGO_ENABLED = 1
go build -o RangerMetrics.dll -buildmode=c-shared .
$env:GOARCH = "amd64"
$env:CGO_ENABLED = 1
go build -o RangerMetrics_x64.dll -buildmode=c-shared .