1# XML parser 2 3set(XEXML_SRCS 4 xeDefs.cpp 5 xeDefs.hpp 6 xeXMLParser.cpp 7 xeXMLParser.hpp 8 ) 9 10set(XEXML_LIBS 11 decpp 12 deutil 13 debase 14 ) 15 16add_library(xexml STATIC ${XEXML_SRCS}) 17target_link_libraries(xexml ${XEXML_LIBS}) 18 19