9 lines
550 B
PowerShell
9 lines
550 B
PowerShell
cargo build
|
|
$base_path = Get-Location
|
|
$capture_dir = "$base_path\build\capture"
|
|
renderdoccli.exe capture --working-dir $base_path --wait-for-exit --capture-file "$capture_dir\cap" "$base_path\target\debug\rust-engine.exe"
|
|
$latest_capture_file = Get-ChildItem -Path $capture_dir | Sort-Object LastAccessTime -Descending | Select-Object -First 1
|
|
$cap_name = $latest_capture_file.name
|
|
$timespan = ((Get-Date) - $latest_capture_file.LastWriteTime)
|
|
Write-Output "Opening $capture_dir\$cap_name from $timespan ago"
|
|
renderdocgui.exe "$capture_dir\$cap_name" |