123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- [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
|