From 651f7de97631550f7eec8981fb1c74f9f45ccd3c Mon Sep 17 00:00:00 2001 From: Stevan Freeborn Date: Sat, 18 Jul 2026 15:22:51 -0500 Subject: [PATCH] build: update run.ps1 for new project layout --- run.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.ps1 b/run.ps1 index 5cea887..4482e10 100644 --- a/run.ps1 +++ b/run.ps1 @@ -1,6 +1,6 @@ Write-Host "[Compiling...]" -gcc main.c -o ./.bin/chip.exe -Wall -Wextra -lraylib -lopengl32 -lgdi32 -lwinmm +gcc src/main.c src/chip8.c -o ./.bin/chip.exe -Iinclude -Wall -Wextra -lraylib -lopengl32 -lgdi32 -lwinmm if ($LASTEXITCODE -ne 0) { Write-Host "[Failed to compiled]";