Add separated patchedBeforeWindowsConfigure

This commit is contained in:
crazywhalecc
2025-08-01 01:28:56 +08:00
parent e1c9240698
commit 07d66ade85
5 changed files with 22 additions and 5 deletions

View File

@@ -288,6 +288,16 @@ abstract class LibraryBase
return false;
}
/**
* Patch code before windows configure.bat
* If you need to patch some code, overwrite this
* return true if you patched something, false if not
*/
public function patchBeforeWindowsConfigure(): bool
{
return false;
}
/**
* Patch code before make
* If you need to patch some code, overwrite this