From fb512e4a15bfb956463f16c08cfea96ea07e1bb7 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 2 Mar 2025 13:22:05 +0000 Subject: [PATCH] Add code generation for windows --- build.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.ps1 b/build.ps1 index 25a8f5e..74ebfc1 100644 --- a/build.ps1 +++ b/build.ps1 @@ -45,6 +45,9 @@ mkdir -p $ObjDir > $null mkdir -p $OutDir > $null mkdir -p $TestsDir > $null +# Run code generation +Invoke-Expression "python3 -m codegen" + # Build and run tests Invoke-Expression "$Compiler $GeneralFlags $IncludeDirs $TestIncludeDirs $SrcFiles $TestSrcFiles $TestOutputs" -ErrorAction Stop