mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
doc: Update CMake and meson instructions
This commit is contained in:
parent
4135ceea75
commit
ee026e160d
43
README.md
43
README.md
@ -23,8 +23,7 @@ This code is released under the MIT License, see the Copyright file.
|
|||||||
|
|
||||||
## Build instructions
|
## Build instructions
|
||||||
|
|
||||||
libxml2 can be built with GNU Autotools, CMake, meson or several other
|
libxml2 can be built with GNU Autotools, CMake or meson.
|
||||||
build systems in platform-specific subdirectories.
|
|
||||||
|
|
||||||
### Autotools (for POSIX systems like Linux, BSD, macOS)
|
### Autotools (for POSIX systems like Linux, BSD, macOS)
|
||||||
|
|
||||||
@ -101,12 +100,13 @@ update your list of installed shared libs.
|
|||||||
|
|
||||||
### CMake (mainly for Windows)
|
### CMake (mainly for Windows)
|
||||||
|
|
||||||
Another option for compiling libxml is using CMake:
|
Example commands:
|
||||||
|
|
||||||
cmake -E tar xf libxml2-xxx.tar.gz
|
cmake -E tar xf libxml2-xxx.tar.xz
|
||||||
cmake -S libxml2-xxx -B libxml2-xxx-build [possible options]
|
cmake -S libxml2-xxx -B builddir [options]
|
||||||
cmake --build libxml2-xxx-build
|
cmake --build builddir
|
||||||
cmake --install libxml2-xxx-build
|
ctest --test-dir builddir
|
||||||
|
cmake --install builddir
|
||||||
|
|
||||||
Common CMake options include:
|
Common CMake options include:
|
||||||
|
|
||||||
@ -122,31 +122,20 @@ directly in various IDEs such as CLion, QtCreator, or Visual Studio.
|
|||||||
|
|
||||||
### Meson
|
### Meson
|
||||||
|
|
||||||
Still somewhat experimental, see
|
Example commands:
|
||||||
[issue 743](https://gitlab.gnome.org/GNOME/libxml2/-/issues/743).
|
|
||||||
|
|
||||||
Libxml can also be built with meson. Without option, simply call
|
meson setup [options] builddir
|
||||||
|
|
||||||
meson setup builddir
|
|
||||||
ninja -C builddir
|
ninja -C builddir
|
||||||
|
meson test -C builddir
|
||||||
To add options, see the meson_options.txt file. For example:
|
|
||||||
|
|
||||||
meson setup \
|
|
||||||
-Dprefix=$prefix \
|
|
||||||
-Dhistory=enabled \
|
|
||||||
-Dhttp=enabled \
|
|
||||||
-Dschematron=disabled \
|
|
||||||
-Dzlib=enabled \
|
|
||||||
builddir
|
|
||||||
|
|
||||||
To install libxml:
|
|
||||||
|
|
||||||
ninja -C builddir install
|
ninja -C builddir install
|
||||||
|
|
||||||
To launch tests:
|
See the `meson_options.txt` file for options. For example:
|
||||||
|
|
||||||
meson test -C builddir
|
-Dprefix=$prefix
|
||||||
|
-Dhistory=enabled
|
||||||
|
-Dhttp=enabled
|
||||||
|
-Dschematron=disabled
|
||||||
|
-Dzlib=enabled
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user