Skip to content

Commit

Permalink
windows obs-ndi
Browse files Browse the repository at this point in the history
  • Loading branch information
ludocosmo committed Oct 31, 2022
1 parent 426d64c commit 1a0646f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CI/windows/02_build_obs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Param(
[String]$BuildConfiguration = $(if (Test-Path variable:BuildConfiguration) { "${BuildConfiguration}" } else { "RelWithDebInfo" }),
[ValidateSet("Millicast", "Wowza", "RemoteFilming", "RemoteFilming-A", "RemoteFilming-B", "RemoteFilming-C", "RemoteFilming-D")]
[String]$Vendor = $(if (Test-Path variable:Vendor) { "${Vendor}" } else { "Millicast" }),
[String]$Ndi = $(if (Test-Path variable:Ndi) { "ON" } else { "OFF"})
[String]$Ndi = $(if (Test-Path variable:Ndi) { "${Ndi}" } else { "OFF"})
)

##############################################################################
Expand Down Expand Up @@ -133,7 +133,7 @@ function Print-Usage {
"-BuildArch : Build architecture to use (x86 or x64) - Default: local architecture",
"-BuildConfiguration : Build configuration to use - Default: RelWithDebInfo",
"-Vendor : Vendor name - Default: Millicast",
"-Ndi : Enable plugin obs-ndi (default: off)"
"-Ndi : Enable plugin obs-ndi (default: OFF)"
)

$Lines | Write-Host
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
CMAKE_GENERATOR: 'Visual Studio 17 2022'
CMAKE_SYSTEM_VERSION: '10.0.18363.657'
VIRTUALCAM-GUID: 'A3FCE0F5-3493-419F-958A-ABA1250EC20B'
- powershell: ./CI/windows/02_build_obs.ps1 -BuildArch x64 -Vendor ${{ vendor }} -Ndi
- powershell: ./CI/windows/02_build_obs.ps1 -BuildArch x64 -Vendor ${{ vendor }} -Ndi ON
displayName: '${{ vendor }} Build OBS + plugin obs-ndi'
env:
OBS_VERSION: ${OBS_VERSION}
Expand Down

0 comments on commit 1a0646f

Please sign in to comment.