16 lines
227 B
PHP
Raw Normal View History

2025-07-31 00:55:25 +08:00
<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
use SPC\util\executor\UnixCMakeExecutor;
trait re2c
{
protected function build(): void
{
UnixCMakeExecutor::create($this)->build();
}
}