diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-09 04:15:33 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-09 04:15:33 +0300 |
commit | 72f488790b388b5b4cbab9d683e1b096b6f817c1 (patch) | |
tree | 57c56978c45c7c6d6f80309878630ead39d56120 /.appveyor | |
parent | set minimum CMake version (diff) | |
download | math-server-72f488790b388b5b4cbab9d683e1b096b6f817c1.tar.gz math-server-72f488790b388b5b4cbab9d683e1b096b6f817c1.zip |
AppVeyor/Travis: remove options also present in common.cmake
Diffstat (limited to '.appveyor')
-rw-r--r-- | .appveyor/build.ps1 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.appveyor/build.ps1 b/.appveyor/build.ps1 index cdacc8a..ea80b10 100644 --- a/.appveyor/build.ps1 +++ b/.appveyor/build.ps1 @@ -93,12 +93,10 @@ function Build-Project { mkdir $BuildDir cd $BuildDir - Invoke-Exe { cmake.exe -Wno-dev ` + Invoke-Exe { cmake.exe ` -G $Generator -A $Platform ` -D "BOOST_ROOT=$BoostDir" ` -D "BOOST_LIBRARYDIR=$BoostLibraryDir" ` - -D Boost_USE_STATIC_LIBS=ON ` - -D Boost_USE_STATIC_RUNTIME=ON ` -D ENABLE_TESTS=ON ` $ProjectDir } |