Skip to content

Commit

Permalink
Fix debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Aug 6, 2021
1 parent 84106d2 commit b4d61aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Expand Up @@ -30,7 +30,7 @@ for:
CFLAGS: "-Wall -Wextra -pedantic -Werror -Wno-long-long -O1 -g -fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all -fno-omit-frame-pointer"
CXXFLAGS: "-Wall -Wextra -pedantic -Werror -Wno-long-long -O1 -g -fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all -fno-omit-frame-pointer"
build_script:
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=$Configuration
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=$CONFIGURATION
- make VERBOSE=1
test_script:
- ctest
Expand Down Expand Up @@ -64,7 +64,7 @@ for:
- sudo apt update -qq
- sudo apt install -y asciidoc libxml2-utils xmlto
build_script:
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DBUILD_MANPAGE=ON -DCMAKE_BUILD_TYPE=$Configuration -DCMAKE_INSTALL_PREFIX=$(pwd)
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DBUILD_MANPAGE=ON -DCMAKE_BUILD_TYPE=$CONFIGURATION -DCMAKE_INSTALL_PREFIX=$(pwd)
- make VERBOSE=1
- make install
test_script:
Expand Down Expand Up @@ -95,7 +95,7 @@ for:
CFLAGS: "-Wall -Wextra -pedantic -Werror -Wno-long-long"
CXXFLAGS: "-Wall -Wextra -pedantic -Werror -Wno-long-long"
build_script:
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=$Configuration -DCMAKE_INSTALL_PREFIX=$(pwd)
- cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=$CONFIGURATION -DCMAKE_INSTALL_PREFIX=$(pwd)
- make VERBOSE=1
- make install
test_script:
Expand Down

0 comments on commit b4d61aa

Please sign in to comment.