Мне нужно подключить библиотеку
muParser (
GitHub) к проекту Qt Creator.
В файле Install.txt читаю:1. Installation on win32
========================
muParser supports various win32 command-line compilers:
-> mingw
-> watcom
-> microsoft CL
and provides also the project files for MSVC6 IDE.
In order to compile muParser from makefiles, open an MSDOS prompt and
then move to the muParser/build directory and type:
mingw32-make -fmakefile.mingw for mingw
nmake -fmakefile.vc for msvc
make -fmakefile.bcc for borland
wmake -fmakefile.wat for watcom
All makefiles supports the following options:
# Set to 1 to build debug version [0,1]
# 0 - Release
# 1 - Debug
DEBUG = 0
# Set to 1 to build shared (DLL) version [0,1]
# 0 - Static
# 1 - DLL
SHARED = 0
# Set to 1 to compile samples [0,1]
SAMPLES = 1
The muParser library is created in the 'lib' folder and the sample binaries are
created in samples\example1 or samples\example2.
- у меня установлен компилятор MinGW
- добавлен в переменную среды PATH
- я захожу в CMD
- перемещаюсь в каталог .../muparser/build
- пишу mingw32-make -fmakefile.mingw
- и получаю:
mingw32-make: makefile.mingw: No such or directory
mingw32-make: *** No rule to make target 'makefile.mingw'. Stop.
Подскажите, пожалуйста, что я не так делаю? Как исправить?
Также я не понял, где и как мне нужно указывать параметры DEBUG, SHARED и SAMPLES?
UPD: Да, так как библиотека собрана на системе сборки CMake, то проект Qt я тоже создал на этой системе.