From f94830cd36b728f01ef7eef1ef3608b2a8945cdc Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Sun, 6 Mar 2022 16:48:03 +0000 Subject: Fix location in config.h in source list (#1807) The wrong name here was causing a cmake warning because it was finding `config.h.in` instead and this behaviour is deprecated. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e707d57b..45fe876f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,11 +50,11 @@ jobs: - name: mkdir run: mkdir -p out - name: cmake - run: cmake .. -G Ninja -DWERROR=ON + run: cmake .. -G Ninja -DWERROR=ON -Werror=dev working-directory: out if: matrix.os != 'windows-latest' - name: cmake (windows) - run: cmake .. -DWERROR=ON + run: cmake .. -DWERROR=ON -Werror=dev working-directory: out if: matrix.os == 'windows-latest' - name: build -- cgit v1.2.3