I've downloaded the GLFW source package, run CMake, and all I get is a Visual Studio solution folder. I'm running MinGW through a POSIX subsystem on a Windows environment, so I don't think the VC++ binaries are going to work for me. Is there any way I can get a proper Makefile?
Asked
Active
Viewed 528 times
0
-
1In Windows, I think cmake will generate visual studio solution by default. To generate another target, you need to specify the target via `-D"MinGW Makefiles"`. More info can be found by running `cmake --help`. – CroCo Aug 30 '17 at 01:05
-
https://stackoverflow.com/questions/32801638/cmake-error-at-cmakelists-txt30-project-no-cmake-c-compiler-could-be-found/ – Retired Ninja Aug 30 '17 at 01:08
-
@CroCo in my case, it was `-G"MSYS Makefiles". everything is compiled and working now. sweet, thanks. – Jace Aug 30 '17 at 01:38