1 Star 0 Fork 8

firespeed / nf-interpreter

forked from 蛋蛋 / nf-interpreter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install-ninja.ps1 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
# This PS installs Ninja build tool
# check if path already exists
$NinjaPathExists = Test-Path $env:NINJA_PATH -ErrorAction SilentlyContinue
If($NinjaPathExists -eq $False)
{
Write-Host "Downloading Ninja..."
$url = "https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip"
$output = "$PSScriptRoot\ninja.zip"
# download zip with Ninja tool
(New-Object Net.WebClient).DownloadFile($url, $output)
Write-Host "Installing Ninja..."
# unzip
Expand-Archive $output -DestinationPath $env:NINJA_PATH
}
C++
1
https://gitee.com/DuHongfeng/nf-interpreter.git
git@gitee.com:DuHongfeng/nf-interpreter.git
DuHongfeng
nf-interpreter
nf-interpreter
master

搜索帮助