mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 21:34:53 +08:00
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\exception\FileSystemException;
|
|
use SPC\exception\RuntimeException;
|
|
use SPC\store\FileSystem;
|
|
|
|
trait libevent
|
|
{
|
|
/**
|
|
* @throws RuntimeException
|
|
* @throws FileSystemException
|
|
*/
|
|
protected function build(): void
|
|
{
|
|
// CMake needs a clean build directory
|
|
FileSystem::resetDir($this->source_dir . '/build');
|
|
// Start build
|
|
shell()->cd($this->source_dir . '/build')
|
|
->exec(
|
|
'cmake ' .
|
|
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' ' .
|
|
"-DCMAKE_TOOLCHAIN_FILE={$this->builder->cmake_toolchain_file} " .
|
|
'-DCMAKE_BUILD_TYPE=Release ' .
|
|
'-DEVENT__LIBRARY_TYPE=STATIC ' .
|
|
'-DEVENT__DISABLE_BENCHMARK=ON ' .
|
|
'-DEVENT__DISABLE_THREAD_SUPPORT=ON ' .
|
|
'-DEVENT__DISABLE_MBEDTLS=ON ' .
|
|
'-DEVENT__DISABLE_TESTS=ON ' .
|
|
'-DEVENT__DISABLE_SAMPLES=ON ' .
|
|
'..'
|
|
)
|
|
->exec("cmake --build . -j {$this->builder->concurrency}")
|
|
->exec('make install');
|
|
}
|
|
}
|