ci(amd64/msvc): setup vulkan env variables
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
730f008c67
commit
3e2b94ec58
1 changed files with 6 additions and 0 deletions
|
|
@ -4,6 +4,12 @@
|
|||
Import-Module 'C:\Program Files\Microsoft Visual Studio\18\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll'
|
||||
Enter-VsDevShell 1a3e2aa7 -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -host_arch=x64'
|
||||
|
||||
$env:VULKAN_SDK = "C:\VulkanSDK\1.4.335.0"
|
||||
$env:PATH = "$env:VULKAN_SDK\Bin;$env:PATH"
|
||||
$env:INCLUDE = "$env:VULKAN_SDK\Include;$env:INCLUDE"
|
||||
$env:LIB = "$env:VULKAN_SDK\Lib;$env:LIB"
|
||||
$env:LIBPATH = "$env:VULKAN_SDK\Lib;$env:LIBPATH"
|
||||
|
||||
if (Test-Path "./build") {
|
||||
Remove-Item "./build" -r -force
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue