blob: 76e92fdf66213e7c50385df33b76400594d9cf3f [file] [log] [blame] [edit]
: # If you want to use a local build of libxml2, you must clone the libxml2 repo in this directory first, then set CMake's AVIF_LIBXML2 to LOCAL.
: # The git tag below is known to work, and will occasionally be updated. Feel free to use a more recent commit.
: # The odd choice of comment style in this file is to try to share this script between *nix and win32.
: # libxml2 is released under the MIT License.
git clone -b v2.14.4 --depth 1 https://github.com/GNOME/libxml2.git
cmake -G Ninja -S libxml2 -B libxml2/build.libavif/ -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=libxml2/install.libavif \
-DLIBXML2_WITH_PYTHON=OFF -DLIBXML2_WITH_ZLIB=OFF -DLIBXML2_WITH_LZMA=OFF
cmake --build libxml2/build.libavif --config Release --parallel
cmake --install libxml2/build.libavif