diff --git a/conanfile.py b/conanfile.py index 54da235..f48583a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -32,6 +32,8 @@ class PocoConan(ConanFile): "enable_data_odbc": [True, False], "enable_sevenzip": [True, False], "enable_zip": [True, False], + "enable_redis": [True, False], + "enable_encodings": [True, False], "enable_apacheconnector": [True, False], "enable_cppparser": [True, False], "enable_pocodoc": [True, False], @@ -61,6 +63,8 @@ class PocoConan(ConanFile): enable_data_odbc=False enable_sevenzip=False enable_zip=True +enable_redis=False +enable_encodings=True enable_apacheconnector=False enable_cppparser=False enable_pocodoc=False @@ -151,8 +155,7 @@ def package_info(self): """ Define the required info that the consumers/users of this package will have to add to their projects """ - libs = [("enable_util", "PocoUtil"), - ("enable_mongodb", "PocoMongoDB"), + libs = [("enable_mongodb", "PocoMongoDB"), ("enable_pdf", "PocoPDF"), ("enable_net", "PocoNet"), ("enable_netssl", "PocoNetSSL"), @@ -164,7 +167,10 @@ def package_info(self): ("enable_data_odbc", "PocoDataODBC"), ("enable_sevenzip", "PocoSevenZip"), ("enable_zip", "PocoZip"), + ("enable_redis", "PocoRedis"), + ("enable_encodings", "PocoEncodings"), ("enable_apacheconnector", "PocoApacheConnector"), + ("enable_util", "PocoUtil"), ("enable_xml", "PocoXML"), ("enable_json", "PocoJSON")]