filipwasil / fillwave

Multiplatform C++14 graphics engine
https://filipwasildev.bitbucket.io/
MIT License
23 stars 6 forks source link

For MinGW make to work correctly sh.exe must NOT be in your path. #17

Closed filipwasil closed 8 years ago

filipwasil commented 8 years ago

sh.exe was found in your PATH, here:

D:/Programy/Git/bin/sh.exe

For MinGW make to work correctly sh.exe must NOT be in your path.

Run cmake from a shell that does not have sh.exe in your PATH.

If you want to use a UNIX shell, then use MSYS Makefiles.

filipwasil commented 8 years ago

Solution If you want still use MinGW makefiles:

place this before calling cmake:

set PATH=%PATH:D:\Programy\Git\bin=%

CMake does not like sh.exe in path.

filipwasil commented 8 years ago

Added appropriate info in README.md this is acrually a MinGW issue. Sorry.