Skip to content
Snippets Groups Projects
Commit c7d46606 authored by Patrick MADELA's avatar Patrick MADELA
Browse files

Use new approach based python requires

parent 7c7bba5a
Branches
Tags
No related merge requests found
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
class aslRecipe(ConanFile):
name = "asl"
version = "1.6.0"
package_type = "library"
user = "soleil"
python_requires = "base/[>=1.0]@soleil/stable"
python_requires_extend = "base.Library"
# Optional metadata
license = "GPL-2"
author = "Nicolas Leclercq"
url = "https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/inputoutput/adlink/adlinksupportlib"
description = "Adlink Support library"
topics = ("utility", "control-system")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "src/**", "include/**"
def requirements(self):
self.requires("ace/5.7.0@soleil/stable", transitive_headers=True, transitive_libs=True)
self.requires("d2k-dask/18.10@soleil/stable", transitive_headers=True, transitive_libs=True)
self.requires("pcis-dask/5.10@soleil/stable", transitive_headers=True, transitive_libs=True)
def config_options(self):
if self.settings.os == "Windows":
self.options.rm_safe("fPIC")
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def layout(self):
cmake_layout(self)
def generate(self):
deps = CMakeDeps(self)
deps.generate()
tc = CMakeToolchain(self)
major, minor, patch = map(int, self.version.split('.'))
tc.variables["PROJECT_NAME"] = self.name
tc.variables["PROJECT_VERSION"] = self.version
tc.variables["MAJOR_VERSION"] = major
tc.variables["MINOR_VERSION"] = minor
tc.variables["PATCH_VERSION"] = patch
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.libs = ["asl"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment