Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Option to build PocoRedis sub-module #23

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"),
Expand All @@ -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")]

Expand Down