mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 13:24:51 +08:00
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\builder\windows\library;
|
||
|
|
|
||
|
|
use SPC\store\FileSystem;
|
||
|
|
|
||
|
|
class curl extends WindowsLibraryBase
|
||
|
|
{
|
||
|
|
public const NAME = 'curl';
|
||
|
|
|
||
|
|
protected function build(): void
|
||
|
|
{
|
||
|
|
// reset cmake
|
||
|
|
FileSystem::resetDir($this->source_dir . '\build');
|
||
|
|
|
||
|
|
// start build
|
||
|
|
cmd()->cd($this->source_dir)
|
||
|
|
->execWithWrapper(
|
||
|
|
$this->builder->makeSimpleWrapper('cmake'),
|
||
|
|
'-B build ' .
|
||
|
|
'-A x64 ' .
|
||
|
|
"-DCMAKE_TOOLCHAIN_FILE={$this->builder->cmake_toolchain_file} " .
|
||
|
|
'-DCMAKE_BUILD_TYPE=Release ' .
|
||
|
|
'-DBUILD_SHARED_LIBS=OFF ' .
|
||
|
|
'-DBUILD_STATIC_LIBS=ON ' .
|
||
|
|
'-DBUILD_CURL_EXE=OFF ' .
|
||
|
|
'-DUSE_ZLIB=ON ' .
|
||
|
|
'-DCURL_USE_OPENSSL=ON ' .
|
||
|
|
'-DCURL_USE_LIBLSSH2=ON ' .
|
||
|
|
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' '
|
||
|
|
)
|
||
|
|
->execWithWrapper(
|
||
|
|
$this->builder->makeSimpleWrapper('cmake'),
|
||
|
|
"--build build --config Release --target install -j{$this->builder->concurrency}"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|