Skip to content

Commit

Permalink
appveyor: Always use RelWithDebInfo configuration.
Browse files Browse the repository at this point in the history
Now that we take nightly builds from AppVeyor, we shouldn't be using
MSVC debug runtime.

Fixes apitrace/apitrace#677
  • Loading branch information
jrfonseca committed Jul 30, 2020
1 parent 935d10a commit a112ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ image: Visual Studio 2019

environment:
MSBUILD_FLAGS: /verbosity:minimal /maxcpucount
CONFIGURATION: RelWithDebInfo
matrix:
- job_name: msvc32
CMAKE_GENERATOR: "Visual Studio 16 2019"
Expand All @@ -35,7 +36,6 @@ before_build:
- cmake -H. -Bbuild -G "%CMAKE_GENERATOR%" -A "%CMAKE_TOOLSET%" "-DCMAKE_PREFIX_PATH=%QT5%" -DENABLE_GUI=ON

build_script:
- if "%APPVEYOR_REPO_TAG%"=="true" (set CONFIGURATION=RelWithDebInfo) else (set CONFIGURATION=Debug)
- cmake --build build --config "%CONFIGURATION%" -- %MSBUILD_FLAGS%

after_build:
Expand Down

0 comments on commit a112ac3

Please sign in to comment.