diff options
author | Christian Fetzer <fetzer.ch@gmail.com> | 2016-09-10 12:31:30 +0200 |
---|---|---|
committer | Christian Fetzer <fetzer.ch@gmail.com> | 2016-09-23 00:13:23 +0200 |
commit | d8f36af21cd27207ad17eca8fc8929d735a9fae6 (patch) | |
tree | 01c79cc09cbeb65fd86e77e8c60e30ff8f971ddf /appveyor.yml | |
parent | 45d5c53662ff57634109743281cbebbe555e749f (diff) |
[appveyor] Run CMake through cmd
Appveyor/powershell treats everything printed to stderr as exceptions.
The CMake warnings and error messages are printed to stderr, and since
they start with a blank line, we don't see any output at all.
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index a448c0e5e0..ff3da9a95c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -57,8 +57,8 @@ build_script: # Build mkdir $env:APPVEYOR_BUILD_FOLDER\kodi-build cd $env:APPVEYOR_BUILD_FOLDER\kodi-build - cmake -G "Visual Studio 14" ..\project\cmake - cmake --build . --target all_build --config RelWithDebInfo + cmd /c 'cmake -G "Visual Studio 14" ..\project\cmake 2>&1' + cmd /c 'cmake --build . --target all_build --config RelWithDebInfo 2>&1' } # |