Hello all...
I have a project where I need to create a Windows DLL of libwebm. The instructions for compilation include use of cmake to generate files for Visual Studio, or using the Makefile.unix for other systems.
I was able to get the library compiled using Cygwin and cmake under Windows, after adding the MINGW-W64 compiler to my path; however, I get an AR-format file containing some .o files instead of a windows DLL.
Is there any way to compile this library with MINGW-W64 to generate a Windows DLL on Windows itself? I found no instructions for doing this. When I try to compile directly under the MINGW-W64 environment with cmake from Cygwin, I get a message stating it doesn't recognize my environment.
- Tim