I want to create a dll-file from LAPACK, to create this I tried following instructions to use https://icl.cs.utk.edu/lapack-for-windows/lapack/ point "Build Instructions to create LAPACK and LAPACKE 3.5.0 dlls for Windows with MinGW".
I have downloaded the following programs:
- minGW 32 Bit from http://mingw.org/
- cmake-3.6.1-win64-x64
- lapack-3.6.1
and set for PATH: C:\MinGW\bin
If I start CMake and follow take Settings:
Source Code: .../LAPACK/lapack-3.6.1
Build: .../LAPACK/Build
Current Generator: MInGW Makefiles
I get following error message
- Code: Select all
CMake Error: The source directory "G:/Praktikant6/10_DLL/LAPACK/lapack" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
How can I fix the problem?
Thank you

