16 lines
429 B
PowerShell
Executable file
16 lines
429 B
PowerShell
Executable file
# Be sure to run "Set-ExecutionPolicy RemoteSigned" before running powershell scripts
|
|
|
|
Param([switch]$Debug)
|
|
|
|
if ($Debug) {
|
|
$dPath = "Debug"
|
|
} else {
|
|
$dPath = "Release"
|
|
}
|
|
|
|
Set-Item -path env:Path -value ($env:Path + ";..\loader\$dPath")
|
|
Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
|
|
$env:VK_LAYER_PATH = "..\layers\$dPath"
|
|
|
|
& $dPath\vk_layer_validation_tests
|
|
.\vkvalidatelayerdoc.ps1
|