your MinGW installation doesn't contain it
I checked the folder i found mingw32-make.exe.
the path to the MinGW/bin folder is not in the PATH environment variable, thus CMake doesn't know where to find mingw32-make
I have set it in 4 entries(the path to mingw's bin folder), CMAKE_C_COMPILER, CMAKE_C_COMPILER_ENV_VAR, CMAKE_CXX_COMPILER and CMAKE_CXX_COMPILER_ENV_VAR, all with types of "PATH", because CMake showed me errors that these entries are missing.
Do I have to create another entry to the mingw's bin folder? If so, how can i set the PATH environment variable?