This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/civetweb_integration
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/civetweb_integration
by this push:
new 2d09caed Use civetweb via Conan.
2d09caed is described below
commit 2d09caed1196c5bdc1417f87e589ae2b32e1f57a
Author: PengZheng <[email protected]>
AuthorDate: Thu Feb 2 17:55:15 2023 +0800
Use civetweb via Conan.
---
conanfile.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/conanfile.py b/conanfile.py
index 4b9b81bf..e4f92862 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -223,6 +223,9 @@ class CelixConan(ConanFile):
self.options['zeromq'].shared = True
self.requires("czmq/4.2.0")
self.options['czmq'].shared = True
+ if self.options.build_http_admin or
self.options.build_remote_service_admin:
+ self.requires("civetweb/1.15")
+ self.options['civetweb'].shared = True
def _configure_cmake(self):
if self._cmake: