src -> source

This commit is contained in:
Judah Caruso 2026-02-20 00:01:02 -07:00
parent b9284e7bf8
commit 1f7d8fdb54
4 changed files with 1 additions and 1 deletions

2
do.ps1
View file

@ -47,7 +47,7 @@ $BLOCKS_RT_SOURCE = "$BLOCKS_RT_RUNTIME $BLOCKS_RT_DATA";
$EMSDK_REPO = "https://github.com/emscripten-core/emsdk.git";
$EMSDK_DIR = Join-Path $DEPS_DIR "emsdk";
$C_SOURCE = "src/main.c";
$C_SOURCE = "source/main.c";
$C_INCLUDES = "-Isrc -I$DEPS_DIR";
$C_FLAGS = "-std=c23 -fblocks -g $C_INCLUDES";
$RELEASE_FLAGS = "-Ofast -Wno-everything -ffast-math";