mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Last version of meson (0.48.0) install meson a differently on Windows. Now, a `meson.exe` is installed, so, we must launch `meson` instead of `meson.py`.
11 lines
391 B
Batchfile
11 lines
391 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 . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
|
|
cd build
|
|
ninja || exit /b 1
|
|
ninja install || exit /b 1
|
|
cd ..\..
|