From d236bd6afc8f961da673a85476863c9daa791d2a Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 15 Oct 2025 09:06:13 +0200 Subject: [PATCH] Update makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bceceb8..38044f3 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,8 @@ build: run: ifeq ($(OS),Windows_NT) - pwsh -NoProfile -Command "$env:PATH = (Join-Path (Get-Location) 'libs') + ';' + $env:PATH; & .\\$(BIN_NAME); exit $LASTEXITCODE" + copy libs\libcodex.dll . + .\$(BIN_NAME) else ./$(BIN_NAME) endif