summaryrefslogtreecommitdiffhomepage
path: root/conanfile.py
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-07 06:09:15 +0100
committerGitHub <noreply@github.com>2026-03-07 06:09:15 +0100
commita82129d7fd21532594eb581ac171d54a8f1837d8 (patch)
tree11c18ed2d256497bcc8ae26e5ec3fde39653eadd /conanfile.py
parentbb1ba0632989d7a28cf301bf27f8f01505046624 (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.py9
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":