From 6cf62960162916f8397053eb65386222561ced7b Mon Sep 17 00:00:00 2001 From: boujee <25431454+boujee@users.noreply.github.com> Date: Thu, 15 Mar 2018 02:18:54 -0700 Subject: [PATCH] add options enable_redis and enable_encodings --- conanfile.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conanfile.py b/conanfile.py index 213965e..1f5e348 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,6 +25,8 @@ class PocoConan(ConanFile): "enable_netssl": [True, False], "enable_netssl_win": [True, False], "enable_crypto": [True, False], + "enable_encodings": [True, False], + "enable_redis": [True, False], "enable_data": [True, False], "enable_data_sqlite": [True, False], "enable_data_mysql": [True, False], @@ -53,6 +55,8 @@ class PocoConan(ConanFile): enable_netssl=True enable_netssl_win=True enable_crypto=True +enable_encodings=True +enable_redis=True enable_data=True enable_data_sqlite=True enable_data_mysql=False @@ -152,6 +156,8 @@ def package_info(self): ("enable_netssl", "PocoNetSSL"), ("enable_netssl_win", "PocoNetSSLWin"), ("enable_crypto", "PocoCrypto"), + ("enable_encodings", "PocoEncodings"), + ("enable_redis", "PocoRedis"), ("enable_data", "PocoData"), ("enable_data_sqlite", "PocoDataSQLite"), ("enable_data_mysql", "PocoDataMySQL"),