blob: cb3acbaca0006b800911caaafa17223e6a0d0f6e [file] [log] [blame]
Tony Barbour59a47322015-06-24 16:06:58 -06001# Be sure to run "Set-ExecutionPolicy RemoteSigned" before running powershell scripts
2
Tony Barbour856aba32015-06-08 16:11:29 -06003Param([switch]$Debug)
4
5if ($Debug) {
6 $dPath = "Debug"
7} else {
8 $dPath = "Release"
9}
10
11Set-Item -path env:Path -value ($env:Path + ";..\loader\$dPath")
12Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
Cody Northrop4adb6392015-08-14 10:59:35 -060013$env:VK_LAYER_PATH = "..\layers\$dPath"
Tony Barbour856aba32015-06-08 16:11:29 -060014
Tony Barbour856aba32015-06-08 16:11:29 -060015& $dPath\vk_layer_validation_tests
Tobin Ehlis12d4c6a2015-08-31 12:42:38 -060016.\vkvalidatelayerdoc.ps1