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
345 B
Batchfile
11 lines
345 B
Batchfile
REM ========================================================
|
|
REM Install libzim
|
|
git clone https://github.com/openzim/libzim.git || exit /b 1
|
|
cd libzim
|
|
git checkout windows || exit /b 1
|
|
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 ..\..
|