Skip to content

Commit eddae99

Browse files
committed
Force use of Ninja for building
1 parent 6e16bf1 commit eddae99

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ def __init__(self) -> None:
2828

2929
def build(self) -> None:
3030
"""Build extension module."""
31-
self.cmake("-S", ".", "-B", "build", "-DCMAKE_BUILD_TYPE=Release")
31+
self.cmake(
32+
"-S", ".", "-B", "build", "-DCMAKE_BUILD_TYPE=Release", "-G", "Ninja"
33+
)
3234
self.cmake(
3335
"--build",
3436
"build",

0 commit comments

Comments
 (0)