Update readme, build scripts

Add incremental build check for stb truetype lib
This commit is contained in:
2025-02-01 09:29:31 -05:00
parent 07cd28226f
commit 0f5f9c18b1
5 changed files with 31 additions and 21 deletions

View File

@ -77,8 +77,13 @@ $path_devshell = join-path $path_helpers 'devshell.ps1'
$path_stb = join-path $path_thirdparty 'stb'
$path_stb_src = join-path $path_stb 'src'
push-location $path_stb_src
$pkg_stb_truetype_dirty = check-ModuleForChanges $path_stb
& '.\build.bat'
if ( $pkg_stb_truetype_dirty)
{
push-location $path_stb_src
pop-location
& '.\build.bat'
pop-location
}