windres.exe -i C:\DOCUME~1\ADMINI~1\Desktop\CTESTS~1\test\1.rc -J rc -o obj\Debug\1.res -O coff -I"C:\Documents and Settings\Administrator\Desktop\C Tests\test\"
gcc: and\: No such file or directory
That's what I wanted. And as you see: You have an issue with spaces in the path. Some resource compilers do *not* support that - as yours.
You now have the following options:
1.) Move your project to a folder without spaces in the path
2.) Update the compiler suite to a more recent one - especially the resource compiler (which depends on the other compilers, to so do *n ot* only update the resource compiler).
3.) In the compiler setup under "other settings" click on the "advanced options". Then select the tab "Others" and enable "force quotes for filenames in compiler command-line", probably the same for the linker.
The latter may not work or even break the compilation, too if not done with care.