mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 13:24:51 +08:00
20 lines
371 B
PHP
20 lines
371 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\linux\library;
|
|
|
|
use SPC\util\executor\UnixCMakeExecutor;
|
|
|
|
class libmemcached extends LinuxLibraryBase
|
|
{
|
|
public const NAME = 'libmemcached';
|
|
|
|
public function build(): void
|
|
{
|
|
UnixCMakeExecutor::create($this)
|
|
->addConfigureArgs('-DCMAKE_INSTALL_RPATH=""')
|
|
->build();
|
|
}
|
|
}
|