We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a4ee89 commit ee482beCopy full SHA for ee482be
setup.py
@@ -28,9 +28,11 @@ def run(self):
28
29
def build_cmake(self, ext):
30
build_temp = pathlib.Path(self.build_temp)
31
+ build_temp.mkdir(parents=True, exist_ok=True)
32
build_lib = pathlib.Path(self.build_lib)
33
outpath = os.path.join(build_lib.absolute(), ext.name)
34
35
+ build_temp = os.path.join(build_temp, "build")
36
if not os.path.exists(build_temp):
37
cmd = [
38
"cmake",
0 commit comments