comparison CMakeLists.txt @ 325:d52a69f9f029

Add Ini, brand new replacement for Parser
author David Demelier <markand@malikania.fr>
date Sat, 28 Feb 2015 18:53:27 +0100
parents ed3cc10761e4
children 0b576ee64d45
comparison
equal deleted inserted replaced
322:0e80e4589533 325:d52a69f9f029
50 option(WITH_DIRECTORY "Enable directory tests" On) 50 option(WITH_DIRECTORY "Enable directory tests" On)
51 option(WITH_DRIVER "Enable SQL drivers tests" On) 51 option(WITH_DRIVER "Enable SQL drivers tests" On)
52 option(WITH_DYNLIB "Enable DynLib tests" On) 52 option(WITH_DYNLIB "Enable DynLib tests" On)
53 option(WITH_FLAGS "Enable Flags tests" On) 53 option(WITH_FLAGS "Enable Flags tests" On)
54 option(WITH_HASH "Enable hash functions tests" On) 54 option(WITH_HASH "Enable hash functions tests" On)
55 option(WITH_INI "Enable .ini parser" On)
55 option(WITH_JSON "Enable Jansson wrapper tests" On) 56 option(WITH_JSON "Enable Jansson wrapper tests" On)
56 option(WITH_OPTIONPARSER "Enable option parser tests" On) 57 option(WITH_OPTIONPARSER "Enable option parser tests" On)
57 option(WITH_PACK "Enable pack functions" On) 58 option(WITH_PACK "Enable pack functions" On)
58 option(WITH_PARSER "Enable parser tests" On) 59 option(WITH_PARSER "Enable parser tests (deprecated)" On)
59 option(WITH_SOCKETS "Enable sockets tests" On) 60 option(WITH_SOCKETS "Enable sockets tests" On)
60 option(WITH_TREENODE "Enable treenode tests" On) 61 option(WITH_TREENODE "Enable treenode tests" On)
61 option(WITH_UTF8 "Enable Utf8 functions tests" On) 62 option(WITH_UTF8 "Enable Utf8 functions tests" On)
62 option(WITH_ZIP "Enable ZipArchive tests" On) 63 option(WITH_ZIP "Enable ZipArchive tests" On)
63 64
87 88
88 if (WITH_JSON) 89 if (WITH_JSON)
89 add_subdirectory(C++/Tests/Json) 90 add_subdirectory(C++/Tests/Json)
90 endif () 91 endif ()
91 92
93 if (WITH_INI)
94 add_subdirectory(C++/Tests/Ini)
95 endif ()
96
92 if (WITH_OPTIONPARSER) 97 if (WITH_OPTIONPARSER)
93 add_subdirectory(C++/Tests/OptionParser) 98 add_subdirectory(C++/Tests/OptionParser)
94 endif () 99 endif ()
95 100
96 if (WITH_PACK) 101 if (WITH_PACK)