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
394 B
Batchfile
11 lines
394 B
Batchfile
REM ========================================================
|
|
REM Install pugixml
|
|
curl -fsSL -O http://public.kymeria.fr/KIWIX/windows/pugixml-1.2-meson.zip || exit /b 1
|
|
7z x pugixml-1.2-meson.zip -o. || exit /b 1
|
|
cd pugixml-1.2-meson
|
|
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 ..\..
|