Add ext-readline,freetype,gmssl,grpc,icu

This commit is contained in:
crazywhalecc
2026-02-05 16:10:16 +08:00
parent 6bd3646a02
commit 4d4b1a334f
12 changed files with 280 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Package\Library;
use StaticPHP\Attribute\Package\BuildFor;
use StaticPHP\Attribute\Package\Library;
use StaticPHP\Package\LibraryPackage;
use StaticPHP\Runtime\Executor\UnixCMakeExecutor;
#[Library('gmssl')]
class gmssl
{
#[BuildFor('Linux')]
#[BuildFor('Darwin')]
public function build(LibraryPackage $lib): void
{
UnixCMakeExecutor::create($lib)->build();
}
}