Skip to content

Commit

Permalink
Update cmake-win64.yml
Browse files Browse the repository at this point in the history
use recent version of png (1.6.40) and tiff (4.6.0)
  • Loading branch information
zdenop authored Oct 7, 2023
1 parent e082522 commit dc228ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Build and Install libpng
shell: cmd
run: |
curl -sSL -o lpng1639.zip https://download.sourceforge.net/libpng/lpng1639.zip
unzip.exe -qq lpng1639.zip
curl -sSL -o lpng1639.zip https://download.sourceforge.net/libpng/lpng1640.zip
unzip.exe -qq lpng1640.zip
cd lpng1639
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=${{env.ILOC}} -DCMAKE_INSTALL_PREFIX=${{env.ILOC}} -DPNG_TESTS=OFF -DPNG_SHARED=OFF
cmake --build build --config Release --target install
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Build and Install libtiff
shell: cmd
run: |
git clone -c advice.detachedHead=false -b "v4.0.10" --depth 1 https://gitlab.com/libtiff/libtiff.git
git clone -c advice.detachedHead=false -b "v4.6.0" --depth 1 https://gitlab.com/libtiff/libtiff.git
cd libtiff
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=${{env.ILOC}} -DCMAKE_INSTALL_PREFIX=${{env.ILOC}} -Dtiff-tools=OFF -Dtiff-tests=OFF -Dtiff-contrib=OFF -Dtiff-docs=OFF
cmake --build build --config Release --target install
Expand Down

0 comments on commit dc228ed

Please sign in to comment.