mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
102 lines
3.2 KiB
PowerShell
102 lines
3.2 KiB
PowerShell
[CmdletBinding()]
|
|
param(
|
|
[ValidateSet('Debug', 'RelWithDebInfo', 'Release', 'MinSizeRel')]
|
|
[string] $Configuration = 'RelWithDebInfo',
|
|
[ValidateSet('x86', 'x64')]
|
|
[string] $Target,
|
|
[ValidateSet('Visual Studio 17 2022', 'Visual Studio 16 2019')]
|
|
[string] $CMakeGenerator,
|
|
[switch] $SkipAll,
|
|
[switch] $SkipBuild,
|
|
[switch] $SkipDeps,
|
|
[switch] $SkipUnpack
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
if ( $DebugPreference -eq 'Continue' ) {
|
|
$VerbosePreference = 'Continue'
|
|
$InformationPreference = 'Continue'
|
|
}
|
|
|
|
if ( $PSVersionTable.PSVersion -lt '7.0.0' ) {
|
|
Write-Warning 'The obs-deps PowerShell build script requires PowerShell Core 7. Install or upgrade your PowerShell version: https://aka.ms/pscore6'
|
|
exit 2
|
|
}
|
|
|
|
function Build {
|
|
trap {
|
|
Pop-Location -Stack BuildTemp
|
|
Write-Error $_
|
|
exit 2
|
|
}
|
|
|
|
$ScriptHome = $PSScriptRoot
|
|
$ProjectRoot = Resolve-Path -Path "$PSScriptRoot/../.."
|
|
$BuildSpecFile = "${ProjectRoot}/buildspec.json"
|
|
|
|
$UtilityFunctions = Get-ChildItem -Path $PSScriptRoot/utils.pwsh/*.ps1 -Recurse
|
|
|
|
foreach($Utility in $UtilityFunctions) {
|
|
Write-Debug "Loading $($Utility.FullName)"
|
|
. $Utility.FullName
|
|
}
|
|
|
|
$BuildSpec = Get-Content -Path ${BuildSpecFile} -Raw | ConvertFrom-Json
|
|
$ProductName = $BuildSpec.name
|
|
$ProductVersion = $BuildSpec.version
|
|
|
|
$script:DepsVersion = ''
|
|
$script:QtVersion = '5'
|
|
$script:VisualStudioVersion = ''
|
|
$script:PlatformSDK = '10.0.18363.657'
|
|
|
|
Setup-Host
|
|
|
|
if ( $CmakeGenerator -eq '' ) {
|
|
$CmakeGenerator = $VisualStudioVersion
|
|
}
|
|
|
|
(Get-Content -Path ${ProjectRoot}/CMakeLists.txt -Raw) `
|
|
-replace "project\((.*) VERSION (.*)\)", "project(${ProductName} VERSION ${ProductVersion})" `
|
|
| Out-File -Path ${ProjectRoot}/CMakeLists.txt
|
|
|
|
Setup-Obs
|
|
|
|
Push-Location -Stack BuildTemp
|
|
if ( ! ( ( $SkipAll ) -or ( $SkipBuild ) ) ) {
|
|
Ensure-Location $ProjectRoot
|
|
|
|
$DepsPath = "plugin-deps-${script:DepsVersion}-qt${script:QtVersion}-${script:Target}"
|
|
$CmakeArgs = @(
|
|
'-G', $CmakeGenerator
|
|
"-DCMAKE_SYSTEM_VERSION=${script:PlatformSDK}"
|
|
"-DCMAKE_GENERATOR_PLATFORM=$(if (${script:Target} -eq "x86") { "Win32" } else { "x64" })"
|
|
"-DCMAKE_BUILD_TYPE=${Configuration}"
|
|
"-DCMAKE_PREFIX_PATH:PATH=$(Resolve-Path -Path "${ProjectRoot}/../obs-build-dependencies/${DepsPath}")"
|
|
"-DQT_VERSION=${script:QtVersion}"
|
|
)
|
|
|
|
Log-Debug "Attempting to configure OBS with CMake arguments: $($CmakeArgs | Out-String)"
|
|
Log-Information "Configuring ${ProductName}..."
|
|
Invoke-External cmake -S . -B build_${script:Target} @CmakeArgs
|
|
|
|
$CmakeArgs = @(
|
|
'--config', "${Configuration}"
|
|
)
|
|
|
|
if ( $VerbosePreference -eq 'Continue' ) {
|
|
$CmakeArgs+=('--verbose')
|
|
}
|
|
|
|
Log-Information "Building ${ProductName}..."
|
|
Invoke-External cmake --build "build_${script:Target}" @CmakeArgs
|
|
}
|
|
Log-Information "Install ${ProductName}..."
|
|
Invoke-External cmake --install "build_${script:Target}" --prefix "${ProjectRoot}/release" @CmakeArgs
|
|
|
|
Pop-Location -Stack BuildTemp
|
|
}
|
|
|
|
Build
|