From f51e0db7fe534d2455dd39fc842f65e6d3e49952 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Sat, 6 Feb 2021 23:41:37 +0200 Subject: [PATCH] build: Check for libxml2 Fixes issue #1298 Signed-off-by: Priit Laes --- cmake/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index a5db4e9532..ce2b7914a7 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -175,6 +175,7 @@ if(USE_MMAP) endif() if (IFCXML_SUPPORT) + find_package(LibXml2 REQUIRED) add_definitions(-DWITH_IFCXML) endif()