FindLibXml2¶
Finds the XML processing library (libxml2).
Imported Targets¶
This module provides the following Imported Targets:
LibXml2::LibXml2Added in version 3.12.
Target encapsulating the libxml2 library usage requirements, available only if library is found.
LibXml2::xmllintAdded in version 3.17.
Target encapsulating the xmllint command-line executable, available only if xmllint executable is found.
Result Variables¶
This module defines the following variables:
LibXml2_FOUNDBoolean indicating whether the libxml2 library is found.
LIBXML2_INCLUDE_DIRSInclude directories needed to use the libxml2 library.
LIBXML2_LIBRARIESLibraries needed to link against to use the libxml2 library.
LIBXML2_DEFINITIONSThe compiler switches required for using libxml2.
LIBXML2_VERSION_STRINGThe version of the libxml2 found.
Cache Variables¶
The following cache variables may also be set:
LIBXML2_INCLUDE_DIRThe include directory containing libxml2 headers.
LIBXML2_LIBRARYThe path to the libxml2 library.
LIBXML2_XMLLINT_EXECUTABLEThe path to the XML checking tool
xmllintcoming with libxml2.
Examples¶
Finding the libxml2 library and linking it to a project target:
find_package(LibXml2)
target_link_libraries(project_target PRIVATE LibXml2::LibXml2)