forgot about stb_sprintf.h...

This commit is contained in:
ed
2025-02-08 23:53:35 -05:00
parent 50c7853b9f
commit d82af845bc
14 changed files with 67 additions and 49 deletions
+3 -5
View File
@@ -134,11 +134,9 @@ if ($code_sanity)
$linker_args = @()
$linker_args += $flag_link_win_subsystem_console
$path_base = join-path $path_code base
$includes = @( $path_base )
$unit = join-path $path_code 'metadesk.c'
$executable = join-path $path_build 'metadesk.lib'
$includes = @( $path_code, $path_root )
$unit = join-path $path_tests 'code_sanity.c'
$executable = join-path $path_build 'code_sanity.exe'
$result = build-simple $path_build $includes $compiler_args $linker_args $unit $executable
}