Starting the process of porting VEFontCache

This commit is contained in:
2024-06-02 17:29:44 -04:00
parent 33ddd420b7
commit f99157aae5
11 changed files with 491 additions and 18 deletions

View File

@ -138,16 +138,24 @@ push-location $path_root
write-host "`nBuilding Sectr Prototype`n"
$package_grime = join-path $path_code 'grime'
$module_host = join-path $path_code 'host'
$module_sectr = join-path $path_code 'sectr'
$path_font = join-path $path_code 'font'
$package_grime = join-path $path_code 'grime'
$package_fstash = join-path $path_font 'fontstash'
$package_VEFontCache = join-path $path_font 'VEFontCache'
$module_host = join-path $path_code 'host'
$module_sectr = join-path $path_code 'sectr'
if ($force){
mark-ModuleDirty $package_fstash
mark-ModuleDirty $package_VEFontCache
mark-ModuleDirty $package_grime
mark-ModuleDirty $module_sectr
mark-ModuleDirty $module_host
}
$pkg_grime_dirty = check-ModuleForChanges $package_grime
$pkg_fstash_dirty = check-ModuleForChanges $package_fstash
$pkg_VEFontCache_dirty = check-ModuleForChanges $package_VEFontCache
$pkg_grime_dirty = check-ModuleForChanges $package_grime
$pkg_collection_codebase = 'codebase=' + $path_code
$pkg_collection_thirdparty = 'thirdparty=' + $path_thirdparty
@ -165,7 +173,7 @@ push-location $path_root
function build-sectr
{
$should_build = (check-ModuleForChanges $module_sectr) -or $pkg_grime_dirty
$should_build = (check-ModuleForChanges $module_sectr) -or $pkg_grime_dirty -or $pkg_fstash_dirty -or $pkg_VEFontCache_dirty
if ( -not( $should_build)) {
write-host 'Skipping sectr build, module up to date'
return $module_unchanged