From 1dc8e8ddd99ee6783f39e09b2084b2363cc23941 Mon Sep 17 00:00:00 2001 From: Alan Garny Date: Mon, 12 Aug 2024 17:17:32 +0200 Subject: [PATCH] CI --- src/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 30a60d5bc..281455db7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -193,9 +193,14 @@ else() target_include_directories(cellml PUBLIC ${ZLIB_INCLUDE_DIRS}) endif() +message(">>> HAVE_LIBXML2_CONFIG: ${HAVE_LIBXML2_CONFIG}") if(HAVE_LIBXML2_CONFIG) +message(">>> target_link_libraries(cellml PUBLIC ${LIBXML2_TARGET_NAME})") target_link_libraries(cellml PUBLIC ${LIBXML2_TARGET_NAME}) else() +message(">>> target_include_directories(cellml PUBLIC ${LIBXML2_INCLUDE_DIR} ${ZLIB_INCLUDE_DIRS})") +message(">>> target_link_libraries(cellml PUBLIC ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES})") +message(">>> target_compile_definitions(cellml PUBLIC ${LIBXML2_DEFINITIONS})") target_include_directories(cellml PUBLIC ${LIBXML2_INCLUDE_DIR} ${ZLIB_INCLUDE_DIRS}) target_link_libraries(cellml PUBLIC ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES}) target_compile_definitions(cellml PUBLIC ${LIBXML2_DEFINITIONS})