Revision 10b09647f2699b32c3d243f595437cb1c63049e2 authored by Orkun Tokdemir on 23 June 2023, 18:31:40 UTC, committed by Orkun Tokdemir on 13 September 2023, 13:59:57 UTC
1 parent cac2e02
Raw File
env.ps1
$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().MainModule.FileName
if (Test-Path -Path ".gitlab/ci/env_$env:CMAKE_CONFIGURATION.ps1" -PathType Leaf) {
  . ".gitlab/ci/env_$env:CMAKE_CONFIGURATION.ps1"
}
back to top