From 494830e2dfcff18f014abc2b289d6b83ddc8c222 Mon Sep 17 00:00:00 2001 From: Vollstrecker Date: Thu, 5 Dec 2024 11:39:40 +0100 Subject: CMake: Remove use of ZLIB_BUILD_EXAMPLES option in workflow. --- .github/workflows/c-std.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-std.yml b/.github/workflows/c-std.yml index 44417bf..8377db4 100644 --- a/.github/workflows/c-std.yml +++ b/.github/workflows/c-std.yml @@ -133,7 +133,7 @@ jobs: - name: Generate project files (cmake) if: matrix.builder == 'cmake' run: | - cmake -S . -B . -D CMAKE_BUILD_TYPE=Release -D ZLIB_BUILD_EXAMPLES=OFF ${{ matrix.os.cmake-opt }} + cmake -S . -B . -D CMAKE_BUILD_TYPE=Release ${{ matrix.os.cmake-opt }} env: CC: ${{ matrix.compiler }} CFLAGS: -std=${{ matrix.std.value }} ${{ matrix.arch.compiler-opt }} -Werror -Wall -Wextra @@ -205,4 +205,4 @@ jobs: run: cmake --build . --config Release -v - name: Run test cases (cmake) - run: ctest -C Release --output-on-failure --max-width 120 \ No newline at end of file + run: ctest -C Release --output-on-failure --max-width 120 -- cgit v1.2.3-55-g6feb