mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
81 lines
1.5 KiB
PowerShell
81 lines
1.5 KiB
PowerShell
cls
|
|
|
|
[string] $type = $null
|
|
[string] $test = $false
|
|
|
|
foreach ( $arg in $args )
|
|
{
|
|
if ( $arg -eq "test" )
|
|
{
|
|
$test = $true
|
|
}
|
|
else
|
|
{
|
|
$type = $arg
|
|
}
|
|
}
|
|
|
|
|
|
#region Regular Build
|
|
write-host "Building project`n"
|
|
|
|
$path_root = git rev-parse --show-toplevel
|
|
$path_build = Join-Path $path_root build
|
|
$path_scripts = Join-Path $path_root scripts
|
|
|
|
|
|
if ( -not( Test-Path $path_build ) )
|
|
{
|
|
$args_meson = @()
|
|
$args_meson += "setup"
|
|
$args_meson += $path_build
|
|
|
|
Start-Process meson $args_meson -NoNewWindow -Wait -WorkingDirectory $path_scripts
|
|
}
|
|
|
|
if ( $type )
|
|
{
|
|
$args_meson = @()
|
|
$args_meson += "configure"
|
|
$args_meson += $path_build
|
|
$args_meson += "--buildtype $($type)"
|
|
|
|
Start-Process meson $args_meson -NoNewWindow -Wait -WorkingDirectory $path_scripts
|
|
}
|
|
|
|
$args_ninja = @()
|
|
$args_ninja += "-C"
|
|
$args_ninja += $path_build
|
|
|
|
Start-Process ninja $args_ninja -Wait -NoNewWindow -WorkingDirectory $path_root
|
|
#endregion Regular Build
|
|
|
|
|
|
if ( $test -eq $true )
|
|
{
|
|
#region Test Build
|
|
write-host "`n`nBuilding Test`n"
|
|
|
|
# Refactor thirdparty libraries
|
|
& .\refactor_and_format.ps1
|
|
|
|
$path_test = Join-Path $path_root test
|
|
$path_test_build = Join-Path $path_test build
|
|
|
|
if ( -not( Test-Path $path_test_build ) )
|
|
{
|
|
$args_meson = @()
|
|
$args_meson += "setup"
|
|
$args_meson += $path_test_build
|
|
|
|
Start-Process meson $args_meson -NoNewWindow -Wait -WorkingDirectory $path_test
|
|
}
|
|
|
|
$args_ninja = @()
|
|
$args_ninja += "-C"
|
|
$args_ninja += $path_test_build
|
|
|
|
Start-Process ninja $args_ninja -Wait -NoNewWindow -WorkingDirectory $path_test
|
|
#endregion Test Build
|
|
}
|