SkiaSharp/scripts/build-debug-app.ps1

19 строки
258 B
PowerShell

$ErrorActionPreference = 'Stop'
try {
cd externals/skia
# git-sync-deps
python tools/git-sync-deps
# gn
./bin/gn gen "out/Debug"
# ninja
../depot_tools/ninja "dm" -C "out/Debug"
} finally {
cd ../../
}
exit $LASTEXITCODE