>mingw32-make process_begin: CreateProcess(NULL, type builds\newline, ...) failed. make (e=2): The system cannot find the file specified. mingw32-make: *** [dos_setup] Error 2
After scouring through many of the makefiles, I finally narrowed the problem to the builds\detect.mk file. Specifically, starting at line 134. After puzzling about that for a while, I finally managed to figure out the reason: I had cygwin binaries in the path. They were conflicting with the mingw files. Removing the cygwin files from the path fixed the problem:
>mingw32-make FreeType build system -- automatic system detection The following settings are used: platform win32 compiler gcc configuration directory .\builds\win32 configuration rules .\builds\win32\w32-gcc.mk If this does not correspond to your system or settings please remove the file 'config.mk' from this directory then read the INSTALL file for help. Otherwise, simply type 'make' again to build the library. or 'make refdoc' to build the API reference (the latter needs python).
Doing another 'mingw32-make' command finished up the compilation, putting the resulting files in \objs.
Now we'll see if it works...
Edit:
It did indeed work. I copied libfreetype.a to mingw/lib. I also copied ft2build.h and the freetype folder with the other header files to mingw/include. Using the library involved including the appropriate headers:
#include <ft2build.h>
#include FT_FREETYPE_H
- and then following the example on the Freetype website. The only other problem was that the Qt .pro file needed to be updated to include the following line:
LIBS += -lfreetype