Fix glfw source path

This commit is contained in:
crazywhalecc
2025-06-12 10:58:58 +08:00
parent e2efaab2b2
commit bfba598ef4
2 changed files with 32 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
<?php
declare(strict_types=1);
namespace SPC\util;
trait GlobalValueTrait
{
public function getBinDir(): string
{
return BUILD_BIN_PATH;
}
public function getIncludeDir(): string
{
return BUILD_INCLUDE_PATH;
}
public function getBuildRootPath(): string
{
return BUILD_ROOT_PATH;
}
public function getLibDir(): string
{
return BUILD_LIB_PATH;
}
}