]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/xml/CMakeLists.txt
allow undo “make detail/structural”, <3 @SpiKe, thanks @Garux, fix #76
[xonotic/netradiant.git] / libs / xml / CMakeLists.txt
1 add_library(xmllib
2         ixml.h
3         xmlelement.h
4         xmlparser.h
5         xmltextags.cpp xmltextags.h
6         xmlwriter.h
7         )
8
9 find_package(GLIB REQUIRED)
10 target_include_directories(xmllib PUBLIC ${GLIB_INCLUDE_DIRS})
11 target_link_libraries(xmllib PUBLIC ${GLIB_LIBRARIES})
12
13 find_package(LibXml2 REQUIRED)
14 target_include_directories(xmllib PUBLIC ${LIBXML2_INCLUDE_DIR})
15 target_link_libraries(xmllib PUBLIC ${LIBXML2_LIBRARIES})