MoonWorksGraphicsTests/MoonWorks.Test.Common/Content/Shaders/compileShaders.ps1

6 lines
114 B
PowerShell
Raw Normal View History

2022-11-09 19:54:42 +00:00
Get-ChildItem "Source" |
Foreach-Object {
$filename = $_.Basename
glslc $_.FullName -o Compiled/$filename.spv
}