Skip to content

Commit 4a09dab

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 f33636f commit 4a09dab

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

conda-recipe-cf/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requirements:
2020
host:
2121
- meson-python >=0.13.0
2222
- meson
23-
- pkg-config
23+
- cmake
2424
- python
2525
- python-gil # [py>=314]
2626
- mkl-devel

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requirements:
2323
host:
2424
- meson-python >=0.13.0
2525
- meson
26-
- pkg-config
26+
- cmake
2727
- python
2828
- python-gil # [py>=314]
2929
- mkl-devel

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ build-backend = "mesonpy"
2828
requires = [
2929
"meson-python>=0.13.0",
3030
"Cython",
31-
"numpy"
31+
"numpy",
32+
"cmake"
3233
]
3334

3435
[project]

0 commit comments

Comments
 (0)