From 835de4359f2e3807d9f174bb4f14ecdee7e267a3 Mon Sep 17 00:00:00 2001 From: Johann Woelper Date: Sat, 11 Nov 2023 10:09:58 +0100 Subject: [PATCH] different libheif install --- .github/workflows/check_windows.yml | 7 +++++-- build_deps_win.bat | 12 ++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check_windows.yml b/.github/workflows/check_windows.yml index eee7a5d..c7dbc08 100644 --- a/.github/workflows/check_windows.yml +++ b/.github/workflows/check_windows.yml @@ -25,11 +25,14 @@ jobs: - name: Install vcpkg run: vcpkg integrate install + - name: Install libheif + run: vcpkg install libheif:x64-windows-static-md + # - name: Install cargo vcpkg # run: cargo install cargo-vcpkg - - name: build heif - run: ./build_deps_win.bat + # - name: build heif + # run: ./build_deps_win.bat # - name: cargo build # run: cargo build diff --git a/build_deps_win.bat b/build_deps_win.bat index e83a4a2..66045ca 100644 --- a/build_deps_win.bat +++ b/build_deps_win.bat @@ -1,9 +1,9 @@ -vcpkg install libde265:x64-windows -vcpkg install libheif:x64-windows +@REM vcpkg install libde265:x64-windows +@REM vcpkg install libheif:x64-windows -@REM git clone https://github.com/Microsoft/vcpkg.git -@REM cd vcpkg -@REM ./bootstrap-vcpkg.bat -@REM ./vcpkg integrate install +git clone https://github.com/Microsoft/vcpkg.git +cd vcpkg +./bootstrap-vcpkg.bat +./vcpkg integrate install @REM ./vcpkg install libheif @REM cd ..