I've found this and this, but it all looks ugly because it blocks pre-build command field for the later use and works for only one file. Is there a way to make it smarter, like setting default action for all *.rc files?
Asked
Active
Viewed 554 times
1
-
1What about providing your own makefile instead of letting eclipse generate it? You could provide a rule for handling `.rc` files. – πάντα ῥεῖ May 14 '16 at 09:58
-
does eclipse allow editing his makefile generation rules such way? because i'm not going to edit makefile manually each time – Karashevich B. May 14 '16 at 10:10
-
@KarashevichB. You either write the entire makefile (in which case you need to create a Makefile project), or you have Eclipse generate the makefile (this is called a Managed Build project), in which case you can use the pre-build step approach. – HighCommander4 Feb 05 '17 at 21:53