log cmake command

This commit is contained in:
Patrick von Reth 2015-07-23 14:32:05 +02:00
parent 8118ea775d
commit 51a9a8c5b0
1 changed files with 4 additions and 2 deletions

View File

@ -6,12 +6,14 @@ Init @("ninja", "extra-cmake-modules", "png2ico")
mkdir -Force $env:APPVEYOR_BUILD_FOLDER\work\build\snorenotify
cd $env:APPVEYOR_BUILD_FOLDER\work\build\snorenotify
cmake -G"Ninja" $env:APPVEYOR_BUILD_FOLDER -DCMAKE_BUILD_TYPE=Release -DWITH_SNORE_DAEMON=ON -DWITH_FRONTENDS=ON -DCMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_ROOT"
LogExec cmake -G"Ninja" $env:APPVEYOR_BUILD_FOLDER -DCMAKE_BUILD_TYPE=Release -DWITH_SNORE_DAEMON=ON -DWITH_FRONTENDS=ON -DCMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_ROOT"
CmakeImageInstall "$env:APPVEYOR_BUILD_FOLDER\work\image"
SetupSnoreSend "$env:APPVEYOR_BUILD_FOLDER\work\image\bin" @{
"global" = @{ "Pushover-SECONDARY_BACKEND/UserKey.v1" = $env:SNORE_PUSHOVER_KEY;
"Toasty-SECONDARY_BACKEND/DeviceID.v1" = $env:SNORE_TOASTY_ID }}
"Toasty-SECONDARY_BACKEND/DeviceID.v1" = $env:SNORE_TOASTY_ID };
"snore-send" = @{"Toasty-SECONDARY_BACKEND/Enabled.v1" = "true";
"Pushover-SECONDARY_BACKEND/Enabled.v1" = "true"}}
SendSnoreNotification "Build complete!" "Build of SnoreNotify succeeded"