From f13027e909a07d91b40290d3f31880074d78f80f Mon Sep 17 00:00:00 2001 From: Jacob Hinkle Date: Wed, 29 Apr 2026 07:12:21 -0700 Subject: [PATCH] Use cmake --build instead of make -C --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f07066..1a77bf8 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def _make(self, build_dir: str, build_type: str, parallel: int): f"/p:Configuration={build_type}", "/t:_cext"]) else: - self.spawn(["make", "-C", build_dir, "-j", str(parallel)]) + self.spawn(["cmake", "--build", build_dir, "-j", str(parallel)]) # TODO: ideally, we should "make install" the library somewhere, so that CMake removes # any build RPATHs etc. But I'll leave that for another day.