Skip to content

Commit 182445d

Browse files
committed
add cmake to build system dependencies
we search for MKL with cmake. Also drop pkg-config from meta.yamls and use cmake
1 parent 13d1445 commit 182445d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

conda-recipe-cf/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ requirements:
1717
host:
1818
- meson-python >=0.13.0
1919
- meson
20-
- pkg-config
20+
- cmake
2121
- python
2222
- python-gil # [py>=314]
2323
- pip

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ requirements:
2727
host:
2828
- meson-python >=0.13.0
2929
- meson
30-
- pkg-config
30+
- cmake
3131
- python
3232
- python-gil # [py>=314]
3333
- pip

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ requires = [
2929
"meson-python>=0.13.0",
3030
"Cython",
3131
"numpy",
32-
"mkl-devel"
32+
"mkl-devel",
33+
"cmake"
3334
]
3435

3536
[project]

0 commit comments

Comments
 (0)