We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8042f87 commit 40f0591Copy full SHA for 40f0591
setup.py
@@ -86,12 +86,10 @@ def run(self):
86
build_lib = ROOT_DIR / Path(build_py.get_package_dir(PACKAGE_NAME)).parent
87
else:
88
build_lib = Path(os.path.abspath(self.build_lib))
89
-# build_temp = Path(os.path.abspath(self.build_temp))
90
91
- # Build in-tree for the time being. libusb commit 1001cb5 adds support for out of tree builds, but
92
- # this is not yet supported in an existing release. Once libusb version 1.0.25 is released, we can
93
- # build out of tree.
94
- build_temp = LIBUSB_DIR
+ # Build out of tree. Requires libusb commit 1001cb5 which adds support for out of tree builds, present
+ # in libusb 1.0.25 and later.
+ build_temp = Path(os.path.abspath(self.build_temp))
95
96
print(f"build_temp = {build_temp}")
97
print(f"build_lib = {build_lib}")
0 commit comments