Compare commits

...

1 Commits
main ... r_38

Author SHA1 Message Date
Matthieu Gautier 056bc07699 [DO NOT MERGE] Make appveyor use the correct dependencies versions. 2022-11-30 18:17:20 +01:00
3 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ REM ========================================================
REM Install kiwix-desktop
git clone https://github.com/kiwix/kiwix-desktop || exit /b 1
cd kiwix-desktop
git checkout 2.3.1 || exit /b 1
echo "Running qmake"
SET _WITH_CONSOLE=1
IF %KIWIX_DESKTOP_RELEASE% EQU 1 (

View File

@ -2,6 +2,7 @@ REM ========================================================
REM Install libkiwix
git clone https://github.com/kiwix/libkiwix.git || exit /b 1
cd libkiwix
git checkout 12.0.0 || exit /b 1
set CPPFLAGS="-I%EXTRA_DIR%/include"
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
cd build

View File

@ -2,6 +2,7 @@ REM ========================================================
REM Install libzim
git clone https://github.com/openzim/libzim.git || exit /b 1
cd libzim
git checkout 8.1.0 || exit /b 1
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
cd build
ninja || exit /b 1