diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-09-20 13:34:53 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-09-20 13:34:53 +0200 |
commit | 4d59558c5604d29807a37ededd7b1ec02d8d9a9e (patch) | |
tree | bcedcfc26664b1c6584ca481b86d4902136a67bf /appveyor.yml | |
parent | 7ac0c685dd01bdce2d1ee0bb878e5044b3c1fffa (diff) |
CI: Migrate compile flags environment variables to new cmake option WITH_WARNINGS_AS_ERRORS
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 5f013678907..873026cb10c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,13 +7,11 @@ environment: BOOST_ROOT: C:\Libraries\boost_1_83_0 MYSQL_ROOT_DIR: C:\Program Files\MySQL\MySQL Server 8.0 OPENSSL_ROOT_DIR: C:\OpenSSL-v32-Win64 - CFLAGS: /WX - CXXFLAGS: /WX build_script: - cmd: >- git config user.email "appveyor@build.bot" && git config user.name "AppVeyor" - cmake -S . -B .\build -G"Visual Studio 17 2022" -A x64 -DSCRIPTS=dynamic -DTOOLS=ON + cmake -S . -B .\build -G"Visual Studio 17 2022" -A x64 -DSCRIPTS=dynamic -DWITH_WARNINGS_AS_ERRORS=ON -DTOOLS=ON cd build |