GstPipelineStudio/ci/build_gps.ps1
Stéphane Cerveau 13165fa9c0 ci: use release build for windows
Create an image with release build of
gstreamer and gtk
2023-12-22 11:40:59 +01:00

6 lines
320 B
PowerShell

$env:MESON_ARGS = "--prefix=C:\gst-install\ -Dbuildtype=release"
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
}