To use qt resources system, the docs says this

The .qrc file must be mentioned in the application's .pro file so that qmake knows about it. For example:
RESOURCES = application.qrc
qmake will produce make rules to generate a file called qrc_application.cpp that is linked into the application. This file contains all the data for the images and other resources as static C++ arrays of compressed binary data. The qrc_application.cpp file is automatically regenerated whenever the .qrc file changes or one of the files that it refers to changes. If you don't use .pro files, you can either invoke rcc manually or add build rules to your build system.

I would like to know how to add a build rule to my build system in visual studio .net 2003 ide to ensure that whenever i change the a file that the .qrc file refers to, then the generated qrc_application.cpp file will also be updated.

all suggestions welcomed.

Thanks in advance.