Initial Super N2N desktop application
Build Windows Portable Package / portable (push) Has been cancelled

This commit is contained in:
2026-09-01 13:30:52 +08:00
commit c955401fb4
78 changed files with 8266 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
n2n_root="${1:?n2n source path is required}"
make_bin="${2:?MinGW make path is required}"
clean="${3:-0}"
cd "$n2n_root"
if [[ ! -f config.mak || ! -f include/config.h ]]; then
./scripts/hack_fakeautoconf.sh
fi
if [[ "$clean" == "1" ]]; then
"$make_bin" clean
fi
"$make_bin" edge supernode