Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Electrometers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Tango devices
MeasureInstruments
lib
Electrometers
Commits
b6b92ef1
Commit
b6b92ef1
authored
11 months ago
by
Patrick MADELA
Browse files
Options
Downloads
Patches
Plain Diff
Use new approach based python requires
parent
8ec04dc7
No related branches found
No related tags found
1 merge request
!1
Rebase TANGODEVIC-2411 commit
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
conanfile.py
+2
-39
2 additions, 39 deletions
conanfile.py
with
2 additions
and
39 deletions
conanfile.py
+
2
−
39
View file @
b6b92ef1
from
conan
import
ConanFile
from
conan.tools.cmake
import
CMakeToolchain
,
CMake
,
cmake_layout
,
CMakeDeps
class
electrometersRecipe
(
ConanFile
):
name
=
"
electrometers
"
version
=
"
2.7.1
"
package_type
=
"
library
"
user
=
"
soleil
"
python_requires
=
"
base/[>=1.0]@soleil/stable
"
python_requires_extend
=
"
base.Library
"
# Optional metadata
license
=
"
GPL-2
"
author
=
"
Xavier Elattaoui
"
url
=
"
https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/measureinstruments/lib/electrometers
"
description
=
"
Electrometers 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
(
"
cpptango/9.2.5@soleil/stable
"
)
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
=
[
"
electrometers
"
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment