mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-06 08:15:39 +08:00
21 lines
383 B
PHP
21 lines
383 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\builder\unix\library;
|
||
|
|
|
||
|
|
use SPC\util\executor\UnixCMakeExecutor;
|
||
|
|
|
||
|
|
trait libmaxminddb
|
||
|
|
{
|
||
|
|
protected function build(): void
|
||
|
|
{
|
||
|
|
UnixCMakeExecutor::create($this)
|
||
|
|
->addConfigureArgs(
|
||
|
|
'-DBUILD_TESTING=OFF',
|
||
|
|
'-DMAXMINDDB_BUILD_BINARIES=OFF',
|
||
|
|
)
|
||
|
|
->build();
|
||
|
|
}
|
||
|
|
}
|