mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
17 lines
731 B
PowerShell
17 lines
731 B
PowerShell
$ErrorActionPreference = 'Stop' # Setting strict mode, similar to 'set -euo pipefail' in bash
|
|
. (Join-Path $PSScriptRoot "env.ps1")
|
|
|
|
Push-Location (Join-Path $BUN_DEPS_DIR 'libdeflate')
|
|
try {
|
|
Remove-Item CMakeCache.txt, CMakeFiles, build -Recurse -ErrorAction SilentlyContinue
|
|
mkdir -Force build
|
|
|
|
Run cmake -S "." -B build @CMAKE_FLAGS -DLIBDEFLATE_BUILD_STATIC_LIB=ON -DLIBDEFLATE_BUILD_SHARED_LIB=OFF -DLIBDEFLATE_BUILD_GZIP=OFF
|
|
Run cmake --build build --clean-first --config Release
|
|
|
|
# In https://github.com/ebiggers/libdeflate/releases/tag/v1.20, it's outputting libdeflate.a even on Windows
|
|
Copy-Item build/deflatestatic.lib $BUN_DEPS_OUT_DIR/deflate.lib
|
|
Write-Host "-> deflate.lib"
|
|
} finally { Pop-Location }
|
|
|