cmake: Build static library with -DLIBXML_STATIC

Fix scope of target_compile_definitions command.

Fixes #425.
This commit is contained in:
Nick Wellnhofer 2022-10-18 18:56:56 +02:00
parent 7f04e29731
commit 530938b487

View File

@ -326,7 +326,7 @@ add_library(LibXml2::LibXml2 ALIAS LibXml2)
target_compile_definitions(LibXml2 PRIVATE SYSCONFDIR="${CMAKE_INSTALL_FULL_SYSCONFDIR}")
if(NOT BUILD_SHARED_LIBS)
target_compile_definitions(LibXml2 INTERFACE LIBXML_STATIC)
target_compile_definitions(LibXml2 PUBLIC LIBXML_STATIC)
set(XML_CFLAGS "-DLIBXML_STATIC")
endif()