18 lines
299 B
PHP
Raw Normal View History

2023-07-26 00:08:20 +08:00
<?php
declare(strict_types=1);
namespace SPC\builder\linux\library;
2025-06-12 10:46:26 +07:00
use SPC\util\executor\UnixCMakeExecutor;
2023-07-26 00:08:20 +08:00
class libmemcached extends LinuxLibraryBase
{
public const NAME = 'libmemcached';
2025-06-12 10:46:26 +07:00
public function build(): void
2023-07-26 00:08:20 +08:00
{
2025-06-12 10:46:26 +07:00
UnixCMakeExecutor::create($this)->build();
2023-07-26 00:08:20 +08:00
}
}