I have a project in Eclipse and I want to use my own makefile. I went to
project -> properties -> C/C++ Build
and unchecked "Generate Makfiles Automatically". I have a makefile named Makefile
in the project base dir which just contains:
all:
g++ *.cpp -o Simulator.exe
When I try to build, I get the following error:
Build of configuration MinGW GCC for project CacheOptimization
(Cannot run program "make": Launching failed)
How can I fix this and make eclipse compile my code?