mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
This is somehow a side build system base on cmd scripts. We should merge it in kiwix-build but... no time for now :/
11 lines
381 B
Batchfile
11 lines
381 B
Batchfile
REM ========================================================
|
|
REM Install zlib
|
|
curl -fsSL -O http://public.kymeria.fr/KIWIX/windows/zlib-1.2.11.meson.zip || exit /b 1
|
|
7z x zlib-1.2.11.meson.zip || exit /b 1
|
|
cd zlib-1.2.11
|
|
meson.py . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
|
|
cd build
|
|
ninja || exit /b 1
|
|
ninja install || exit /b 1
|
|
cd ..\..
|