J.A. de Jong - ASCEE / Redu-Sone
3e6c8cf3b2
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
347 B
Bash
11 lines
347 B
Bash
#!/bin/bash
|
|
#
|
|
cmake . -G"Ninja" -DLASP_HAS_ULDAQ=OFF -DPython3_ROOT_DIR=C:\\winpython\\python-3.10.9.amd64
|
|
|
|
|
|
files_to_cpy="libfftw3-3.dll libgcc_s_seh-1.dll libgfortran-5.dll libgomp-1.dll libopenblas.dll libquadmath-0.dll libstdc++-6.dll libwinpthread-1.dll"
|
|
|
|
for fn in ${files_to_cpy}; do
|
|
cp /c/msys64/mingw64/bin/${fn} src/lasp
|
|
done
|