Add CMake alias targets for embedded projects

This commit is contained in:
Markus Rickert 2021-05-22 14:51:26 +02:00 committed by Nick Wellnhofer
parent 2c0f2f0341
commit a1cac3bbe4

View File

@ -414,6 +414,7 @@ if(LIBXML2_WITH_TRIO)
endif()
add_library(LibXml2 ${LIBXML2_HDRS} ${LIBXML2_SRCS})
add_library(LibXml2::LibXml2 ALIAS LibXml2)
if(NOT BUILD_SHARED_LIBS)
target_compile_definitions(LibXml2 INTERFACE LIBXML_STATIC)
@ -537,6 +538,7 @@ if(LIBXML2_WITH_PROGRAMS)
)
foreach(PROGRAM ${PROGRAMS})
add_executable(${PROGRAM} ${PROGRAM}.c)
add_executable(LibXml2::${PROGRAM} ALIAS ${PROGRAM})
target_link_libraries(${PROGRAM} LibXml2)
if(HAVE_LIBHISTORY)
target_link_libraries(${PROGRAM} history)