Summary
I faced issues with the Shell32 library when compiling it via MinGW under Linux.
/usr/bin/x86_64-w64-mingw32-ld: cannot find -lShell32: No such file or directory
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Fix
I just had to change the name Shell32 to shell32 in the following files:
- src/CMakeLists.txt
- tests/CMakeLists.txt
Summary
I faced issues with the Shell32 library when compiling it via MinGW under Linux.
Fix
I just had to change the name
Shell32toshell32in the following files: