Reputation: 317
I have looked at this post on stackoverflow and they said to use the command prompt called "Developer Command Prompt for VS2012" and run this command:
nmake -f Makefile.win
This was the error I got.
It says g++ is not recognized but I have it installed. Does anyone know what is wrong?
Upvotes: 0
Views: 9029
Reputation: 2686
Path
variable adding the full path of where g++ is installed (do not include g++.exe
at the end).Save, run cmd and try again to use your makefile.
Upvotes: 2