diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-09 04:00:22 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-09 04:00:22 +0300 |
commit | 3320a084e9f5e3169cf5a3d1cb33c5f968b24459 (patch) | |
tree | 54fffe99b6dccc447a22b9419277303eaf6e0b0a | |
parent | update cmake-common (diff) | |
download | privilege-check-3320a084e9f5e3169cf5a3d1cb33c5f968b24459.tar.gz privilege-check-3320a084e9f5e3169cf5a3d1cb33c5f968b24459.zip |
AppVeyor: no -Wno-dev
-rw-r--r-- | .appveyor/build.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor/build.ps1 b/.appveyor/build.ps1 index 1b9c5db..fab4cc0 100644 --- a/.appveyor/build.ps1 +++ b/.appveyor/build.ps1 @@ -62,7 +62,7 @@ function Build-Project { mkdir $BuildDir cd $BuildDir - Invoke-Exe { cmake.exe -Wno-dev -G $Generator -A $Platform $ProjectDir } + Invoke-Exe { cmake.exe -G $Generator -A $Platform $ProjectDir } Invoke-Exe { cmake.exe --build . --config $Configuration -- /m } } |