-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathconanfile.py
More file actions
30 lines (22 loc) · 929 Bytes
/
conanfile.py
File metadata and controls
30 lines (22 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# ***************************************************************
# This is an internal Bloomberg Conan recipe. *
# This recipe does not work outside of Bloomberg infrastructure *
# ***************************************************************
import os
from conan import ConanFile
from conan.tools.cmake import CMake
class Package(ConanFile):
python_requires = "conan-dpkg-recipe/[>=0.22]@test/unstable"
python_requires_extend = "conan-dpkg-recipe.CMakeModule"
skip_unit_tests = True
def init(self):
super().init()
self.dependency_ignore.append('python3.8')
self.dependency_ignore.append('python3.12')
def get_build_target(self) -> str | None:
return None
def get_install_components(self) -> list[str] | None:
return [self.name]
def package_info(self):
if "bbs-cmake-module" == self.name:
super().package_info()