mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 11:14:20 +00:00
17 lines
210 B
PowerShell
17 lines
210 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
$env:VCPKG_ROOT = "D:\Program Files\vcpkg"
|
|
$env:PATH = "$env:VCPKG_ROOT;$env:PATH"
|
|
|
|
git submodule update --init --recursive
|
|
|
|
if ($IsWindows)
|
|
{
|
|
}
|
|
elseif ($IsMacOS)
|
|
{
|
|
}
|
|
elseif ($IsLinux)
|
|
{
|
|
}
|