Browse Source

Fix warnings as errors flag in workflow

Paul-Louis Ageneau 2 years ago
parent
commit
b8fb707d2d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .github/workflows/build-nomedia.yml
  2. 1 1
      .github/workflows/build-openssl.yml

+ 1 - 1
.github/workflows/build-nomedia.yml

@@ -29,7 +29,7 @@ jobs:
     - name: submodules
       run: git submodule update --init --recursive --depth 1
     - name: cmake
-      run: cmake -B build -G "NMake Makefiles" -DUSE_GNUTLS=0 -DNO_MEDIA=1 -WARNINGS_AS_ERRORS=1
+      run: cmake -B build -G "NMake Makefiles" -DUSE_GNUTLS=0 -DNO_MEDIA=1 -DWARNINGS_AS_ERRORS=1
     - name: nmake
       run: |
         cd build

+ 1 - 1
.github/workflows/build-openssl.yml

@@ -45,7 +45,7 @@ jobs:
     - name: submodules
       run: git submodule update --init --recursive --depth 1
     - name: cmake
-      run: cmake -B build -G "NMake Makefiles" -DUSE_GNUTLS=0 -WARNINGS_AS_ERRORS=1
+      run: cmake -B build -G "NMake Makefiles" -DUSE_GNUTLS=0 -DWARNINGS_AS_ERRORS=1
     - name: nmake
       run: |
         cd build