Skip to content

Commit

Permalink
take 1
Browse files Browse the repository at this point in the history
  • Loading branch information
BLumia committed Apr 25, 2024
1 parent aadb86c commit 7d265c4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ environment:
LIBEXPAT: C:\projects\libexpat
LIBAVIF: C:\projects\libavif
LIBEXIV2: C:\projects\exiv2
LIBHEIF: C:\projects\libheif
PPKG: C:\projects\ppkg
matrix:
- job_name: mingw_64_qt6_5
Expand All @@ -31,6 +32,7 @@ install:
- mkdir %LIBEXPAT%
- mkdir %LIBAVIF%
- mkdir %LIBEXIV2%
- mkdir %LIBHEIF%
- mkdir %PPKG%
- cd %APPVEYOR_BUILD_FOLDER%
- git submodule update --init --recursive
Expand Down Expand Up @@ -121,6 +123,15 @@ build_script:
- cmake --build . --config Release
- cmake --build . --config Release --target install/strip
- cd %APPVEYOR_BUILD_FOLDER%
# install libheif for heif format support of KImageFormats
- cd %LIBHEIF%
- curl -fsSL -o libheif-v1.17.6.zip https://github.com/strukturag/libheif/archive/v1.17.6.zip
- 7z x libheif-v1.17.6.zip -y
- cd libheif-1.17.6
- cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
- cmake --build build --config Release
- cmake --build build --config Release --target install/strip
- cd %APPVEYOR_BUILD_FOLDER%
# install KArchive for kra format support of KImageFormats
- cd 3rdparty
- git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/karchive.git
Expand Down

0 comments on commit 7d265c4

Please sign in to comment.