From: Marc Fehling Date: Mon, 22 Jul 2024 13:20:42 +0000 (+0200) Subject: Do not disable ZLIB on Windows. X-Git-Tag: v9.6.0-rc1~26^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd6a174ca7b18c8cdd9d37467e01fae7af543a86;p=dealii.git Do not disable ZLIB on Windows. --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fad00acb6a..ab07db3a73 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -45,7 +45,7 @@ jobs: wmic logicaldisk get size, freespace, caption - name: configure run: | - cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=c:/project -DDEAL_II_WITH_ZLIB=off -DDEAL_II_CXX_FLAGS="-WX /D FE_EVAL_FACTORY_DEGREE_MAX=2" -T host=x64 -A x64 + cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=c:/project -DDEAL_II_CXX_FLAGS="-WX /D FE_EVAL_FACTORY_DEGREE_MAX=2" -T host=x64 -A x64 - name: print detailed.log run: type build/detailed.log - name: build