How to force use a resource compiler for each compiler?

Is there a project / compiler / linker that can force the brcc32.exe file to run for some or all of the .rc files included in the project? By default, only those .rc files that have changed are recompiled, but not when there are files included in .rc . Now we manually delete the .res files to force recompile.

Update: inspired by the accepted answer, I wrote the following: https://gist.github.com/2868141

+6
source share
1 answer

They have not used Delphi for many years, but as far as I remember, you can define pre-build events, right? You can touch all rc files before creating.

+5
source

Source: https://habr.com/ru/post/917158/


All Articles