diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-07 06:09:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-07 06:09:15 +0100 |
| commit | a82129d7fd21532594eb581ac171d54a8f1837d8 (patch) | |
| tree | 11c18ed2d256497bcc8ae26e5ec3fde39653eadd /conanfile.py | |
| parent | bb1ba0632989d7a28cf301bf27f8f01505046624 (diff) | |
[CHORE] Update conanfile.py
Remove unused variables and parameters.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'conanfile.py')
| -rw-r--r-- | conanfile.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/conanfile.py b/conanfile.py index 75e7b68..ef9337b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -9,15 +9,10 @@ class oclRecipe(ConanFile): license = "BSL-1.0" author = "Amlal El Mahrouss amlal@nekernel.org" url = "https://git.ocl.nekernel.org/ocl" - description = "The Open C++ Libraries super-project." + description = "The Open C++ Libraries.org super-project." topics = ("c++17", "libraries", "cpp") - # Binary configuration - settings = "os", "compiler", "build_type", "arch" - options = {"shared": [True, False], "fPIC": [True, False]} - default_options = {"shared": False, "fPIC": True} - - exports_sources = "CMakeLists.txt", "libs/*", "include/*" + exports_sources = "CMakeLists.txt", "include/*" def config_options(self): if self.settings.os == "Windows": |
