File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,7 @@ set CMAKE_UNITY_BUILD=ON
6565mkdir %CPP_BUILD_DIR%
6666pushd %CPP_BUILD_DIR%
6767
68- @ REM by default, CMake installs .lib import libs to lib and .dll libs to bin
69- @ REM delvewheel requires these to be side-by-side to properly vendor
7068cmake ^
71- -DCMAKE_INSTALL_BINDIR=lib ^
7269 -DARROW_ACERO=%ARROW_ACERO% ^
7370 -DARROW_BUILD_SHARED=ON ^
7471 -DARROW_BUILD_STATIC=OFF ^
@@ -137,6 +134,10 @@ pushd %SOURCE_DIR%\python
137134%PYTHON_CMD% -m pip install -r requirements-build.txt || exit /B 1
138135%PYTHON_CMD% -m pip install build delvewheel || exit /B 1
139136
137+ @ REM by default, CMake installs .lib import libs to lib and .dll libs to bin
138+ @ REM delvewheel requires these to be side-by-side to properly vendor
139+ cp %CMAKE_INSTALL_PREFIX% \lib\*.lib %CMAKE_INSTALL_PREFIX% \bin
140+
140141@ REM Build PyArrow
141142%PYTHON_CMD% -m build --wheel . --no-isolation || exit /B 1
142143%PYTHON_CMD% -m delvewheel repair --ignore-existing --no-mangle-all --include-imports dist\* || exit /B 1
You can’t perform that action at this time.
0 commit comments