mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-22 09:00:59 +00:00
6 lines
No EOL
300 B
PowerShell
6 lines
No EOL
300 B
PowerShell
$env:MESON_ARGS = "--prefix=C:\gst-install\"
|
|
cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=amd64 && meson _build $env:MESON_ARGS && meson compile -C _build && ninja -C _build install"
|
|
if (!$?) {
|
|
Write-Host "Failed to build and install GstPipelineStudio"
|
|
Exit 1
|
|
} |