2019-04-04 12:10:23 +02:00
|
|
|
Set-PsDebug -Trace 1
|
|
|
|
|
2018-08-02 14:42:14 +02:00
|
|
|
if (-not (Test-Path env:ICINGA2_BUILDPATH)) {
|
|
|
|
$env:ICINGA2_BUILDPATH = '.\build'
|
|
|
|
}
|
2018-02-02 17:19:14 +01:00
|
|
|
|
2019-04-04 12:10:23 +02:00
|
|
|
if (-not (Test-Path env:CMAKE_BUILD_TYPE)) {
|
|
|
|
$env:CMAKE_BUILD_TYPE = 'RelWithDebInfo'
|
|
|
|
}
|
|
|
|
|
2018-08-02 14:42:14 +02:00
|
|
|
if (-not (Test-Path $env:ICINGA2_BUILDPATH)) {
|
|
|
|
Write-Host "Path '$env:ICINGA2_BUILDPATH' does not exist!"
|
2018-02-02 17:19:14 +01:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not (Test-Path env:CMAKE_PATH)) {
|
|
|
|
$env:CMAKE_PATH = 'C:\Program Files\CMake\bin'
|
|
|
|
}
|
|
|
|
if (-not ($env:PATH -contains $env:CMAKE_PATH)) {
|
|
|
|
$env:PATH = $env:CMAKE_PATH + ';' + $env:PATH
|
|
|
|
}
|
|
|
|
|
2019-04-04 12:10:23 +02:00
|
|
|
cmake.exe --build "$env:ICINGA2_BUILDPATH" --target ALL_BUILD --config $env:CMAKE_BUILD_TYPE
|
|
|
|
if ($lastexitcode -ne 0) { exit $lastexitcode }
|
|
|
|
|
|
|
|
cmake.exe --build "$env:ICINGA2_BUILDPATH" --target PACKAGE --config $env:CMAKE_BUILD_TYPE
|
2018-08-02 14:42:14 +02:00
|
|
|
if ($lastexitcode -ne 0) { exit $lastexitcode }
|