Add cmake executor and default library path var wrapper

This commit is contained in:
crazywhalecc
2025-06-09 00:16:18 +08:00
parent a7e48a8d3b
commit 521af84797
3 changed files with 217 additions and 0 deletions

View File

@@ -328,6 +328,21 @@ abstract class LibraryBase
return false;
}
public function getIncludeDir(): string
{
return BUILD_INCLUDE_PATH;
}
public function getBuildRootPath(): string
{
return BUILD_ROOT_PATH;
}
public function getLibDir(): string
{
return BUILD_LIB_PATH;
}
/**
* Build this library.
*