fix. building neoLegacy on linux

not sure if bundling an exe file is the best way to do this but oh well
This commit is contained in:
Fireblade
2026-04-23 23:04:47 -04:00
parent f75df87aaf
commit c6a137ec6f
4 changed files with 120 additions and 1 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ warn() { echo -e "${YELLOW}[warn]${NC} $*"; }
die() { echo -e "${RED}[error]${NC} $*" >&2; exit 1; }
check_deps() {
local missing=()
local deps=(clang-cl lld-link llvm-rc llvm-ml llvm-lib llvm-mt cmake ninja xwin rsync)
local deps=(clang-cl lld-link llvm-rc llvm-ml llvm-lib llvm-mt cmake ninja xwin rsync wine)
for dep in "${deps[@]}"; do
command -v "$dep" &>/dev/null || missing+=("$dep")
done