You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pe...@apache.org on 2022/08/17 09:14:49 UTC

[celix] branch feature/add_new_conan_option updated: Add conan option for bundle compression.

This is an automated email from the ASF dual-hosted git repository.

pengzheng pushed a commit to branch feature/add_new_conan_option
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/add_new_conan_option by this push:
     new 616cf562 Add conan option for bundle compression.
616cf562 is described below

commit 616cf56206b0df8f449ae93e4c85418ec370f011
Author: PengZheng <ho...@gmail.com>
AuthorDate: Wed Aug 17 17:12:09 2022 +0800

    Add conan option for bundle compression.
---
 conanfile.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/conanfile.py b/conanfile.py
index 0deb7979..8568605e 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -78,6 +78,8 @@ class CelixConan(ConanFile):
         "celix_cxx": [True, False],
         "celix_install_deprecated_api": [True, False],
         "celix_add_deprecated_attributes": [True, False],
+        "celix_jar_command_arguments": ["ANY"],
+        "celix_zip_command_arguments": ["ANY"],
     }
     default_options = { 
         "enable_testing": False,
@@ -120,6 +122,8 @@ class CelixConan(ConanFile):
         "celix_cxx": False,
         "celix_install_deprecated_api": False,
         "celix_add_deprecated_attributes": True,
+        "celix_jar_command_arguments": "-cfm",
+        "celix_zip_command_arguments": "-rq",
     }
     _cmake = None