diff options
| author | Ahmad Fatoum <[email protected]> | 2020-03-23 22:48:29 +0100 |
|---|---|---|
| committer | Ahmad Fatoum <[email protected]> | 2020-03-24 06:37:22 +0100 |
| commit | 4e6db307e42ce370dc32c568e05492e9fff35c24 (patch) | |
| tree | 9f94d783e2a903f1d6b322013d6234031d72fec7 | |
| parent | 0229f9b1a4d8df88fc739f1b78f19f7f665e3437 (diff) | |
| download | raylib-4e6db307e42ce370dc32c568e05492e9fff35c24.tar.gz raylib-4e6db307e42ce370dc32c568e05492e9fff35c24.zip | |
appveyor: configure for Release with Debug Info
We build the library as debug with AppVeyor and package it this way,
which is unfortunate, because on Windows it's linked against debug
variants of the C runtime. Fix this by build RelWithDebInfo instead
Fixes #1128.
| -rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index f48486b0..3dadf24a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,7 +39,7 @@ before_build: - cd build build_script: - - cmake -G %GENERATOR% -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=%examples% -DBUILD_GAMES=%examples% -DINCLUDE_EVERYTHING=ON .. + - cmake -G %GENERATOR% -DCMAKE_BUILD_TYPE=RelWithDebInfo -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=%examples% -DBUILD_GAMES=%examples% -DINCLUDE_EVERYTHING=ON .. - cmake --build . --target install after_build: |
