I have a C project in which I would like to use some C++ files. I've modified the Makefile accordingly, but I get the
make\mingw32-make.exe[1]: *** No rule to make target
error.
I noticed that the included headers from the cpp standard library are not found.
[Edit] As a note, all the .c, .cpp, .h files are in the same folder.
If I add
#include <string>
in the .c file it is found. In the .cpp it's not.
In Eclipse I've seen that I can't set includes for C++.
Is there a way to do this ?
Thank you.