comparison CMakeLists.txt @ 306:4fac25f2b251

Xml: * Rename XmlParser.(h|cpp) to Xml.$1 * Class XmlParser renamed to XmlReader * Use callbacks instead of virtual functions Task: #311
author David Demelier <markand@malikania.fr>
date Mon, 17 Nov 2014 20:29:09 +0100
parents 88f9d8b406c6
children e2a8cbf2dd79
comparison
equal deleted inserted replaced
305:ddd704ac6e21 306:4fac25f2b251
56 option(WITH_PACK "Enable pack functions" On) 56 option(WITH_PACK "Enable pack functions" On)
57 option(WITH_PARSER "Enable parser tests" On) 57 option(WITH_PARSER "Enable parser tests" On)
58 option(WITH_SOCKETS "Enable sockets tests" On) 58 option(WITH_SOCKETS "Enable sockets tests" On)
59 option(WITH_TREENODE "Enable treenode tests" On) 59 option(WITH_TREENODE "Enable treenode tests" On)
60 option(WITH_UTF8 "Enable Utf8 functions tests" On) 60 option(WITH_UTF8 "Enable Utf8 functions tests" On)
61 option(WITH_XMLPARSER "Enable XML tests" On) 61 option(WITH_XML "Enable XML tests" On)
62 option(WITH_ZIP "Enable ZipArchive tests" On) 62 option(WITH_ZIP "Enable ZipArchive tests" On)
63 63
64 if (UNIX) 64 if (UNIX)
65 option(WITH_XDG "Enable XDG standard directories tests" On) 65 option(WITH_XDG "Enable XDG standard directories tests" On)
66 endif () 66 endif ()
107 107
108 if (WITH_XDG AND UNIX) 108 if (WITH_XDG AND UNIX)
109 add_subdirectory(C++/Tests/Xdg) 109 add_subdirectory(C++/Tests/Xdg)
110 endif () 110 endif ()
111 111
112 if (WITH_XML)
113 add_subdirectory(C++/Tests/Xml)
114 endif ()
115
112 if (WITH_ZIP) 116 if (WITH_ZIP)
113 add_subdirectory(C++/Tests/Zip) 117 add_subdirectory(C++/Tests/Zip)
114 endif () 118 endif ()